Update auto-generated documentation #2404
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
| # yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json | |
| --- | |
| name: PR Checks | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, labeled, unlabeled] | |
| permissions: {} | |
| jobs: | |
| check-do-not-merge-tag: | |
| name: Check for do-not-merge tag | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| permissions: | |
| issues: read | |
| pull-requests: read | |
| steps: | |
| - name: Check for do-not-merge label | |
| uses: mheap/github-action-required-labels@8afbe8ae6ab7647d0c9f0cfa7c2f939650d22509 # v5.5.1 | |
| with: | |
| labels: do-not-merge | |
| mode: exactly | |
| count: 0 |