Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Feature: add auto_merge_enabled event into target events of pull request #193

Open
wants to merge 1 commit into
base: gh-actions
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
### 対象イベント
| eventName | action |
|:---|:---|
| pull_request | opened, reopened, synchronize, closed, ready_for_review |
| pull_request | opened, reopened, synchronize, closed, ready_for_review, auto_merge_enabled |
| push | * |

もしこれ以外のイベントで呼ばれた場合、結果は空になります。
Expand All @@ -236,7 +236,7 @@ jobs:
```yaml
on:
pull_request:
types: [opened, reopened, synchronize, closed, ready_for_review]
types: [opened, reopened, synchronize, closed, ready_for_review, auto_merge_enabled]

jobs:
eslint:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ If there is no difference in the source code below, this workflow will skip the
### Target events
| eventName | action |
|:---|:---|
| pull_request | opened, reopened, synchronize, closed, ready_for_review |
| pull_request | opened, reopened, synchronize, closed, , auto_merge_enabled |
| push | * |

If called on any other event, the result will be empty.
Expand Down
Loading