Skip to content

Commit c725b7e

Browse files
chore: changes for tests automation (#223)
THis PR introduces initial version of https://splunk.atlassian.net/browse/ADDON-67703 implementation. Correlated with: splunk/addonfactory-repository-template#528
1 parent 54e4ecd commit c725b7e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)