Skip to content

Commit

Permalink
Add a GA workflow that requires labels on PR's (#101)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
benfred authored Jun 9, 2022
1 parent 3ea33c6 commit 78ecddd
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/require-label.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Require PR Labels

on:
pull_request:
types: [synchronize, opened, reopened, labeled, unlabeled]

jobs:
check-labels:
uses: nvidia-merlin/.github/.github/workflows/require-label.yaml@main

0 comments on commit 78ecddd

Please sign in to comment.