From 2f24990f95de1be8c7a748ef63bb778ccd82b8d5 Mon Sep 17 00:00:00 2001 From: Gabriel Saratura Date: Wed, 29 Oct 2025 11:06:01 +0100 Subject: [PATCH] Disable merge button --- .github/workflows/merge-button.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/merge-button.yml diff --git a/.github/workflows/merge-button.yml b/.github/workflows/merge-button.yml new file mode 100644 index 0000000000..fcbdb3822b --- /dev/null +++ b/.github/workflows/merge-button.yml @@ -0,0 +1,15 @@ +name: Add /merge comment + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + +jobs: + merge-instructions: + runs-on: ubuntu-latest + name: Merge button disabled + steps: + - name: Instructions + run: | + echo "✅ To merge this PR, comment: /merge" + echo "The merge button is intentionally disabled"