Skip to content

Commit

Permalink
add run-container-workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
m-goggins committed Jun 20, 2024
1 parent afbb038 commit 7803fb1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/run-container-workflow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Run Container Workflow"
description: "Runs a specified container workflow"

inputs:
workflow:
description: "The workflow file to run"
required: true

runs:
using: "composite"
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Run specified workflow
run: |
gh workflow run ${{ inputs.workflow }}

0 comments on commit 7803fb1

Please sign in to comment.