diff --git a/.github/workflows/branch-test-release.yml b/.github/workflows/branch-test-release.yml new file mode 100644 index 000000000..ba2a2270c --- /dev/null +++ b/.github/workflows/branch-test-release.yml @@ -0,0 +1,24 @@ +name: "branch-test-release" +on: + workflow_dispatch: + inputs: + branchname: + description: "name of a branch that will be checked out in template repository" + required: true + type: string + default: ${{ github.ref_name }} + +permissions: + contents: write + packages: read + pull-requests: read + statuses: write + +jobs: + run-template-rollout: + uses: splunk/addonfactory-repository-template/.github/workflows/sync.yaml@${{ inputs.branchname }} + with: + repositories: "test-addonfactory-repo" + branchname: ${{ inputs.branchname }} + secrets: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}