Skip to content

Commit

Permalink
feat: test runner workflow (#3)
Browse files Browse the repository at this point in the history
Adding test GitHub actions workflow for testing GitHub action runs.

Co-authored-by: Silvija Tovernic <[email protected]>
  • Loading branch information
stovernic and Silvija Tovernic authored Sep 18, 2024
1 parent 79dc570 commit 160c57d
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 160c57d

Please sign in to comment.