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.
2 parents 3eee904 + 57dea55 commit 15ecb36Copy full SHA for 15ecb36
.github/workflows/branch-test-release.yml
@@ -0,0 +1,24 @@
1
+name: "branch-test-release"
2
+on:
3
+ workflow_dispatch:
4
+ inputs:
5
+ branchname:
6
+ description: "name of a branch that will be checked out in template repository"
7
+ required: true
8
+ type: string
9
+ default: ${{ github.ref_name }}
10
+
11
+permissions:
12
+ contents: write
13
+ packages: read
14
+ pull-requests: read
15
+ statuses: write
16
17
+jobs:
18
+ run-template-rollout:
19
+ uses: splunk/addonfactory-repository-template/.github/workflows/sync.yaml@${{ inputs.branchname }}
20
+ with:
21
+ repositories: "test-addonfactory-repo"
22
+ branchname: ${{ inputs.branchname }}
23
+ secrets:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments