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 54e4ecd commit c725b7eCopy full SHA for c725b7e
.github/workflows/build-test-branch.yml
@@ -0,0 +1,24 @@
1
+name: "build-test-branch"
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