Skip to content

Commit 62f9378

Browse files
authored
Merge pull request #651 from recurly/label-checker
Adding PR Review workflow with Label Checker job
2 parents 9eab4e4 + aa695cb commit 62f9378

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/pr-review.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: PR Review
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- repoened
8+
- edited
9+
- synchronize
10+
- labeled
11+
- unlabeled
12+
13+
concurrency:
14+
group: ${{ github.workflow }} - ${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
label-checker:
19+
runs-on: ubuntu-latest
20+
name: Label Checker
21+
steps:
22+
- name: Check Labels
23+
uses: docker://agilepathway/pull-request-label-checker:latest
24+
with:
25+
one_of: V2
26+
repo_token: ${{ secrets.GITHUB_TOKEN }}
27+

0 commit comments

Comments
 (0)