From 2e0cec211d6af92fac0829f945167f0cf5bfcfd3 Mon Sep 17 00:00:00 2001 From: Jesus Osuna Date: Wed, 1 Jul 2026 11:54:15 -0400 Subject: [PATCH] [RUN-4568] Add prepare-community-pr reusable workflow caller Adds the centralized workflow from rundeck/rundeck so that community PRs from forks can be securely run through full CI via an integration branch. Co-authored-by: Cursor --- .github/workflows/prepare-community-pr.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/prepare-community-pr.yml diff --git a/.github/workflows/prepare-community-pr.yml b/.github/workflows/prepare-community-pr.yml new file mode 100644 index 0000000..4a1db9e --- /dev/null +++ b/.github/workflows/prepare-community-pr.yml @@ -0,0 +1,15 @@ +# Calls the centralized workflow from rundeck/rundeck. +# To add this to another repo, copy this file — no changes needed. +name: Prepare community PR + +on: + pull_request_target: + types: [labeled] + +jobs: + prepare: + if: github.event.label.name == 'prepare-community-pr' + uses: rundeck/rundeck/.github/workflows/prepare-community-pr.yml@main + permissions: + contents: write + pull-requests: write