diff --git a/.github/workflows/auto_cherry_pick.yml b/.github/workflows/auto_cherry_pick.yml new file mode 100644 index 0000000..40ac3ca --- /dev/null +++ b/.github/workflows/auto_cherry_pick.yml @@ -0,0 +1,26 @@ +name: Auto Cherry-Pick from Upstream + +on: + workflow_dispatch: + inputs: + base_branch: + description: "Base branch to create the PR against" + required: true + default: "main" + + schedule: + - cron: "0 0 * * 1" + +permissions: + contents: write + pull-requests: write + packages: read + issues: write + +jobs: + audit-fix: + uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@v1 + with: + original-owner: "stefanzweifel" + repo-name: "git-auto-commit-action" + base_branch: ${{ inputs.base_branch }} \ No newline at end of file