Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

ci(deps): update 4m-mazi/souji-action action to v1.4.0 #386

ci(deps): update 4m-mazi/souji-action action to v1.4.0

ci(deps): update 4m-mazi/souji-action action to v1.4.0 #386

Workflow file for this run

name: PR label check
on:
pull_request:
types:
- opened # for "Require status checks to pass"
- synchronize # ditto
- labeled
- unlabeled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
pull-requests: read
jobs:
do-not-merge:
runs-on: ubuntu-latest
steps:
- run: |
if ${{ contains(github.event.pull_request.labels.*.name, 'do-not-merge') }}; then
false
else
true
fi