Skip to content

Commit

Permalink
remind developers to set label on their PR's
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasengels committed Nov 13, 2024
1 parent a8203cf commit 4e05e0a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/label-reminder-existing-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: label-reminder-existing-pr.yml
on:
pull_request:
branches:
- main
types:
- reopened
- labeled
- unlabeled
jobs:
check_labels:
name: 'Check PR Labels'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mheap/github-action-required-labels@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
mode: exactly
count: 1
labels: 'major, minor, patch'

0 comments on commit 4e05e0a

Please sign in to comment.