Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Bump actions/checkout from 4 to 5 in the github-actions-update group #239

Bump actions/checkout from 4 to 5 in the github-actions-update group

Bump actions/checkout from 4 to 5 in the github-actions-update group #239

Workflow file for this run

name: pr
on:
pull_request:
types: [synchronize, opened, reopened, labeled, unlabeled]
jobs:
label-do-not-merge:
runs-on: ubuntu-latest
steps:
- run: |-
if [ "${{ contains(join(github.event.pull_request.labels.*.name, ', '), 'do-not-merge') }}" = "true" ]; then
exit 1
fi
exit 0