[WIP] [AI] Migrate create-folders migration to TypeScript #6702
Workflow file for this run
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
| name: Block PRs with "do not merge" label | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, labeled, unlabeled] | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| do-not-merge: | |
| name: Block PRs with "do not merge" label | |
| runs-on: depot-ubuntu-latest | |
| steps: | |
| - name: Fail if 'do not merge' label is set | |
| if: contains(github.event.pull_request.labels.*.name, 'do not merge') | |
| run: | | |
| echo "::error::This PR has the 'do not merge' label set." | |
| exit 1 |