Skip to content

Commit e609310

Browse files
committed
wip: release labels
1 parent df9ebf0 commit e609310

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Verify
2+
on:
3+
pull_request:
4+
branches:
5+
- '**'
6+
types:
7+
- opened
8+
- synchronize
9+
- reopened
10+
- labeled
11+
- unlabeled
12+
13+
jobs:
14+
check_pr_labels:
15+
runs-on: ubuntu-latest
16+
name: PR has required labels
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
# https://github.com/marketplace/actions/label-checker-for-pull-requests
21+
- name: Check PR for Release Notes labels
22+
uses: docker://agilepathway/pull-request-label-checker:latest
23+
with:
24+
one_of: patch-ver,minor-ver,major-ver,ignore-for-release
25+
repo_token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)