This is a test commit #1
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: validate-pr | |
on: | |
pull_request: | |
types: [edited, opened, reopened, synchronize] | |
jobs: | |
# We need to verify that the Pull Request's title matches the desired format. | |
verify_pr_title: | |
runs-on: ubuntu-latest | |
name: Verify that PR title contains well-formed GUS work item tag. | |
steps: | |
# Private actions must check out repo first. | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# TODO: Implement this action | |
- name: Verify PR Title | |
run: echo 'Nope not yet' | |
# Separately, we also need to run our tests | |
run_tests: | |
uses: ./.github/workflows/run-tests.yml |