1
0

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 1 year has passed since last update.

pull_requestイベントについて【GitHubActions】

Last updated at Posted at 2022-11-19

知りたいこと

GithubActionsの、ワークフローtriggerイベントの一つである「pull_request」であるが、これはつまりPRがどうなったときにワークフローが発火するのか?

答え

  • デフォルトでは、「PRがopenされたとき」「PRにcommitがpushされたとき」「PRがcloseされたあと再度openされたとき」にワークフローが起動する。
  • 以下のようにActivity typeを指定してあげれば、デフォルト以外を設定可能。
on:
  pull_request:
    type: [review_requested, review_request_removed]

参考

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?