Closed1
特定のブランチに向けたprで発火するgithub actionsを設定する
冒頭の書き方のように pull request作成元(head)のブランチが特定のブランチのみ発火するワークフローは以下のように定義できます。
on:
の中では完結しないっぽいですね〜なるほど。
on:
pull_request:
types:
- opened
jobs:
run_if:
if: startsWith(github.head_ref, 'releases/')
runs-on: ubuntu-latest
steps:
- run: echo "The head of this PR starts with 'releases/'"
このスクラップは2022/08/31にクローズされました