Skip to content

ci: do not merge workflow #5

ci: do not merge workflow

ci: do not merge workflow #5

Workflow file for this run

name: PR label check
on:
pull_request:
types:
- opened
- labeled
- unlabeled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
pull-requests: read
jobs:
do-not-merge:
runs-on: ubuntu-22.04
steps:
- run: |
if ${{ contains(github.event.pull_request.labels.*.name, 'do NOT merge!!!') }}; then
false
else
true
fi