Skip to content

Commit

Permalink
Merge branch 'main' into feature/github-container-runners-base
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvija Tovernic committed Sep 18, 2024
2 parents 07aa5c1 + 160c57d commit 4f48621
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: _Test Workflow

on:
workflow_dispatch:
inputs:
runsOn:
description: 'Runs-On: Runner'
required: true
default: 'self-hosted'
type: string
command:
description: 'run: Command'
required: true
default: 'echo "test"'
type: string

jobs:
build:
runs-on: ${{ inputs.runsOn }}
steps:
- name: Run Command
run: ${{ inputs.command }}

0 comments on commit 4f48621

Please sign in to comment.