Create tables-based versions of student progress and quiz data when saving of their comment based versions #335
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 |