Skip to content

Commit b2475bf

Browse files
auto cherry pick workflow added
auto cherry pick workflow added
1 parent 85f1b45 commit b2475bf

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Auto Cherry-Pick from Upstream
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
base_branch:
7+
description: "Base branch to create the PR against"
8+
required: true
9+
default: "main"
10+
script:
11+
required: false
12+
default: "npm run all"
13+
14+
permissions:
15+
contents: write
16+
pull-requests: write
17+
packages: read
18+
issues: write
19+
20+
jobs:
21+
audit-fix:
22+
uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@fix_UpStream-Changes-Cherry-Pick
23+
with:
24+
original-owner: "jpoehnelt"
25+
repo-name: "secrets-sync-action"
26+
base_branch: ${{ inputs.base_branch }}
27+
script: ${{ inputs.script }}

0 commit comments

Comments
 (0)