Merge pull request #5157 from blackpiglet/modify-changelog-check-action-condition

Add labeled and unlabeled events for PR changelog check action.
This commit is contained in:
qiuming
2022-07-29 16:00:33 +08:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5 -1
View File
@@ -1,5 +1,9 @@
name: Pull Request Changelog Check
on: [pull_request]
# by setting `on: [pull_request]`, that means action will be trigger when PR is opened, synchronize, reopened.
# Add labeled and unlabeled events too.
on:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
jobs:
build:
+1
View File
@@ -0,0 +1 @@
Add labeled and unlabeled events for PR changelog check action.