ci(dependabot): check for dependency updates #1
This file contains hidden or 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
| --- | |
| # Dogfood the policy workflow in this repository, to enforce code quality | |
| # standards and best practices. | |
| # | |
| # DO NOT USE THIS WORKFLOW AS A TEMPLATE. Instead use the policy.yaml workflow | |
| # directly. | |
| name: policy | |
| on: | |
| pull_request_target: | |
| push: | |
| branches: | |
| # Run on merge queue branches for branch protection compatibility. | |
| - gh-readonly-queue/** | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality-checks: | |
| uses: tomasbasham/shared-workflows/.github/workflows/policy.yaml@master | |
| with: | |
| enable-merge-commit-check: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target' }} | |
| enable-commit-message-check: ${{ github.event_name == 'pull_request' || github.event_name == 'pull_request_target' }} |