We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e082ee commit dd0698bCopy full SHA for dd0698b
.github/workflows/auto_cherry_pick.yml
@@ -0,0 +1,28 @@
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
+ description: 'Script to run after audit fix'
12
+ required: false
13
+ default: 'npm run publish'
14
15
+permissions:
16
+ contents: write
17
+ pull-requests: write
18
+ packages: read
19
+ issues: write
20
21
+jobs:
22
+ cherry-pick:
23
+ uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@v1
24
+ with:
25
+ original-owner: "mdgreenwald"
26
+ repo-name: "mozilla-sops-action"
27
+ base_branch: ${{ inputs.base_branch }}
28
+ script: ${{ inputs.script || 'npm run publish' }}
0 commit comments