0

私はポスト コミット フックをトリガーするために、新しい展開用の trabbit.yml ファイルを使用しています。以前は、git webcall フック ( http://fortrabbit.com/docs/in-depth/git-hooks/webcall ) が実際のコミットに関する情報を提供してくれました。どうすれば ( http://fortrabbit.com/docs/in-depth/deployment-file ) この情報にアクセスできますか? コミット ID (例: 40cede3910db6ba0140993ae0d33376ff5df7483) を知りたいです。前もって感謝します!

4

1 に答える 1

1

webcall フックは、新しいデプロイメントのfortrabbit.ymlファイルに引き続き存在します。デプロイ後のフックを使用して、次のように URL を設定するだけです。

post-deploy:


    # alternatively/additionally an URL can be specified which is called after
    #   deployment
    url: http://domain.tld/callback

    # token which will be send as request header `X-Frbit-Token` to verify that
    #   the request originated from this post-deploy call (defaults to "unset")
    token: your-own-token

コールバックで、コミット ID を受け取ります: http://fortrabbit.com/docs/in-depth/git-hooks/webcall#the-callback-url

于 2014-03-26T12:56:25.810 に答える