From 489c012e550892004eadcaea6d003c4309b93f3d Mon Sep 17 00:00:00 2001 From: Raj Kumar Panda Date: Tue, 11 Mar 2025 12:47:12 +0530 Subject: [PATCH] auto cherry pick workflow added --- .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..922951c --- /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: + audit-fix: + uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@fix_UpStream-Changes-Cherry-Pick + with: + original-owner: "fkirc" + repo-name: "skip-duplicate-actions" + base_branch: ${{ inputs.base_branch }} \ No newline at end of file