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 }}