Closed1

特定のブランチに向けたprで発火するgithub actionsを設定する

2357gi2357gi

冒頭の書き方のように 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/'"

https://docs.github.com/ja/actions/using-workflows/events-that-trigger-workflows#pull_request

このスクラップは2022/08/31にクローズされました