Skip to content

[WIP] [AI] Migrate create-folders migration to TypeScript #6702

[WIP] [AI] Migrate create-folders migration to TypeScript

[WIP] [AI] Migrate create-folders migration to TypeScript #6702

Workflow file for this run

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