Skip to content

Commit

Permalink
Label checker action reruns when needed
Browse files Browse the repository at this point in the history
- The label checker GH action currently runs when a PR is posted,
but not when labels are added
- Since most people add labels _after_ they post a PR, this makes the
action mostly useless
- Fix: rerun action on add/remove label
- If this works, you could start making label checker a required check,
which would make your release process a little cleaner
  • Loading branch information
Luke Sikina committed Nov 9, 2023
1 parent d4b0655 commit f4618c8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/label-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled

jobs:
label-check:
Expand Down

0 comments on commit f4618c8

Please sign in to comment.