Skip to content

Bump bridgecrewio/checkov-action from 12.2785.0 to 12.2786.0 #10310

Bump bridgecrewio/checkov-action from 12.2785.0 to 12.2786.0

Bump bridgecrewio/checkov-action from 12.2785.0 to 12.2786.0 #10310

Workflow file for this run

name: Enforce do not merge label
on:
pull_request:
types: [synchronize, opened, reopened, labeled, unlabeled]
permissions:
contents: read
jobs:
do-not-merge:
if: ${{ contains(github.event.*.labels.*.name, 'DO NOT MERGE') }}
name: Prevent merging
runs-on: ubuntu-latest
steps:
- name: Check for label
run: |
echo "Pull request is labeled as 'DO NOT MERGE'"
echo "This workflow fails so that the pull request cannot be merged"
exit 1