Fix empty string check in quiz question answers #1529
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: Pull Request Validation | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
check-milestone: | |
name: Check Milestone | |
runs-on: ubuntu-latest | |
steps: | |
- if: github.event.pull_request.milestone == null | |
run: | | |
echo "This PR is missing a milestone." | |
exit 1 |