NEW (GraphEngine): @W-13569669@: Adds new rule, UseWithSharingOnDatabaseOperation #636
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 | |
- name: Verify PR title | |
uses: ./github-actions/verify-pr-title | |
id: verify_pr_title | |
# Separately, we also need to run all of our tests. | |
run_tests: | |
uses: ./.github/workflows/run-tests.yml |