105
49

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GitHub Actions でプルリクのマージでワークフローを実行する

Last updated at Posted at 2020-07-11

2020/07/11 コメントでご指摘いただきまして内容を修正しました。ありがとうございます。

GitHub Actions にはプルリクがマージされた際のイベントは用意されていません。
プルリクがクローズされた際のイベントとプルリクがマージされているかどうかの条件を組み合わせることでプルリクのマージ時にのみワークフローを実行する設定が可能です。

on:
  pull_request:
    branches:
      - master
    types: [closed]

jobs:
  tag:
    runs-on: ubuntu-latest
    if: github.event.pull_request.merged == true

マージされたプルリクエストは常にプッシュになるため、 push イベントを利用してもプルリクエストのマージ時にワークフローの実行が可能です。

on:
  push:
    branches:
      - master

ただしこちらの場合は、直接 master ブランチにプッシュした際もワークフローが実行されますのでご注意ください。

105
49
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
105
49

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?