Skip to content

Commit

Permalink
Add action to check labels on PRs (#102)
Browse files Browse the repository at this point in the history
* Add action to check labels on PRs

* add 2 more
  • Loading branch information
ludeeus authored Dec 19, 2024
1 parent bc286cf commit 3337011
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Labels

on:
pull_request:
branches:
- main
types:
- labeled
- opened
- synchronize
- unlabeled

permissions: {}

jobs:
check:
name: Check labels
runs-on: ubuntu-latest
steps:
- name: Check the labels
uses: ludeeus/[email protected]
with:
labels: >-
breaking-change, bugfix, dependencies, enhancement, feature, actions, repository

0 comments on commit 3337011

Please sign in to comment.