Skip to content

ci: do not merge workflow #3

ci: do not merge workflow

ci: do not merge workflow #3

Workflow file for this run

name: PR label check
on:
pull_request:
types:
- opened
- labeled
- unlabeled
permissions:
pull-requests: read
jobs:
do-not-merge:
if: github.event.label.name == '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