Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/do-not-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

name: Do Not Merge

on:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]
Comment thread
coderabbitai[bot] marked this conversation as resolved.

concurrency:
group: do-not-merge-${{ github.event.pull_request.number }}
cancel-in-progress: true

jobs:
label-check:
name: DO NOT MERGE label
if: contains(github.event.pull_request.labels.*.name, 'DO NOT MERGE')
runs-on: ubuntu-24.04
timeout-minutes: 1
permissions: {}
steps:
- name: Block merge
run: |
echo "::error::Remove the DO NOT MERGE label before merging."
exit 1
Loading