Skip to content

Commit 78ecddd

Browse files
authored
Add a GA workflow that requires labels on PR's (#101)
This adds a github actions workflow that requires PR's to be labelled as described in: https://github.com/NVIDIA-Merlin/Merlin/blob/main/CONTRIBUTING.md#label-your-prs Unlabelled PR's will get failed by this workflow, and once we make this required they won't be able to be merged.
1 parent 3ea33c6 commit 78ecddd

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Require PR Labels
2+
3+
on:
4+
pull_request:
5+
types: [synchronize, opened, reopened, labeled, unlabeled]
6+
7+
jobs:
8+
check-labels:
9+
uses: nvidia-merlin/.github/.github/workflows/require-label.yaml@main

0 commit comments

Comments
 (0)