-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stack-info: PR: #1252, branch: drisspg/stack/20
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: PR Label Check | ||
on: | ||
pull_request: | ||
types: [opened, labeled, unlabeled, synchronize] | ||
|
||
jobs: | ||
check-labels: | ||
name: Check PR Labels | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check for Topic label | ||
run: | | ||
# Get the labels using GitHub API | ||
LABELS=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | ||
"https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}" \ | ||
| jq -r '.labels[].name') | ||
# Check if there are any labels | ||
if [ -z "$LABELS" ]; then | ||
echo "::error::This PR requires at least one topic label. Please add a topic from: https://github.com/pytorch/ao/labels?q=topic" | ||
exit 1 | ||
fi | ||
# Check for Topic label | ||
if ! echo "$LABELS" | grep -i "topic:" > /dev/null; then | ||
echo "::error::This PR requires at least one label starting with 'topic:'. Available topics can be found at: https://github.com/pytorch/ao/labels?q=topic" | ||
exit 1 | ||
fi | ||
echo "PR has required topic label" |