From 2daab1326de5c32c9736bfc3c90370d47b069d5a Mon Sep 17 00:00:00 2001 From: Raj-StepSecurity Date: Fri, 30 May 2025 15:55:15 +0530 Subject: [PATCH] Create auto_cherry_pick.yml --- .github/workflows/auto_cherry_pick.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/auto_cherry_pick.yml diff --git a/.github/workflows/auto_cherry_pick.yml b/.github/workflows/auto_cherry_pick.yml new file mode 100644 index 0000000..f30e8c0 --- /dev/null +++ b/.github/workflows/auto_cherry_pick.yml @@ -0,0 +1,23 @@ +name: Auto Cherry-Pick from Upstream + +on: + workflow_dispatch: + inputs: + base_branch: + description: "Base branch to create the PR against" + required: true + default: "main" + +permissions: + contents: write + pull-requests: write + packages: read + issues: write + +jobs: + cherry-pick: + uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@v1 + with: + original-owner: "rtCamp" + repo-name: "action-slack-notify" + base_branch: ${{ inputs.base_branch }}