Skip to content

Commit

Permalink
chore: introduction of test branch workflow (#223) (#224)
Browse files Browse the repository at this point in the history
THis PR introduces initial version of
https://splunk.atlassian.net/browse/ADDON-67703 implementation.
Correlated with:
splunk/addonfactory-repository-template#528
  • Loading branch information
kdoroszko-splunk authored Jan 24, 2024
2 parents 3eee904 + 57dea55 commit 15ecb36
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/branch-test-release.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 15ecb36

Please sign in to comment.