Skip to content

Commit

Permalink
Add workflow to check required labels
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhaus authored Sep 4, 2024
1 parent a1ecefe commit da99300
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/check_labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Check Pull Request labels"

# yamllint disable-line rule:truthy
on:
pull_request:
branches:
- dev
types:
- labeled
- opened
- reopened
- synchronize
- unlabeled

permissions: {}

jobs:
check_labels:
name: "Check Pull Request labels"
runs-on: ubuntu-latest
steps:
- name: Check the labels
uses: ludeeus/action-require-labels@1.1.0
with:
labels: >-
bugfix, breaking-change, new-feature, code-quality, new-integration, deprecation, dependency

0 comments on commit da99300

Please sign in to comment.