ensure milestone is set on PRs #1
Workflow file for this run
This file contains hidden or 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
name: PR Checks | |
on: | |
pull_request: | |
jobs: | |
pr-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Ensure milestone is set on the PR | |
id: check_milestone | |
run: | | |
if [ -z "${{ github.event.pull_request.milestone }}" ]; then | |
echo "No milestone set on the PR. Please set a milestone before proceeding." | |
exit 1 | |
fi |