-
Notifications
You must be signed in to change notification settings - Fork 23
39 lines (36 loc) · 1.21 KB
/
check-label.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# This workflow runs on any change made to a pull-request and aims to verify
# that the correct label is present.
name: Check proper lable usage
on:
pull_request_target:
types: [opened, labeled, unlabeled, synchronize]
jobs:
labels:
runs-on: ubuntu-latest
steps:
# Ensure that one of the required labels is present and none of the undesired is absent
# See https://github.com/jesusvasquez333/verify-pr-label-action
- name: Verify PR label action
uses: jesusvasquez333/verify-pr-label-action@v1.4.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
valid-labels: >
type:accessibility,
type:bug,
type:code-enhancement,
type:dependencies,
type:documentation,
type:enhancement,
type:github_actions,
type:infrastructure,
type:security,
type:tests,
type:typing,
type:usability,
type:visual-clarity
invalid-labels: >
status:duplicate,
status:conflicts,
status:wontfix
pull-request-number: "${{ github.event.pull_request.number }}"
disable-reviews: true