workflowsセクションのジョブにfiltersキーを追加することで、特定のブランチでのみ実行されるジョブを設定することができます。
workflows:
version: 2
build:
jobs:
- test:
filters:
branches:
only:
- master
後続のジョブにこのフィルターを設定することも可能です。
workflows:
version: 2
build:
jobs:
- test
- deploy:
requires:
- test
filters:
branches:
only:
- master
コメント
記事コメントは受け付けていません。