Bump elgohr/Publish-Docker-Github-Action from 56d83a64624e457e0dde052abc8baa3fec37b396 to 8a77ff7e106a82f06cefb2670b851ff562c53079 #2271
Workflow file for this run
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
name: "Check PR Has Milestone" | |
on: | |
pull_request: | |
types: [opened, edited, synchronize, reopened, labeled] | |
branches: | |
- dev | |
- master | |
concurrency: | |
group: "check-pr-milestone-${{ github.head_ref || github.run_id }}-${{ github.event_name }}" | |
cancel-in-progress: true | |
jobs: | |
fail-on-bad-milestone: | |
name: Fail if Pull Request has no Associated Version Milestone | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail if no Milestone Set | |
if: github.event.pull_request.milestone == null | |
run: | | |
echo "::error::Pull request must have milestone set!" | |
exit 1 | |
- name: Fail if Invalid Milestone Set | |
run: | | |
if [[ ${{ github.event.pull_request.milestone.title }} =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then | |
exit 0 | |
fi | |
echo "::error::Pull request has non-standard milestone!" | |
exit 1 |