Rename test-runner-available to test-runner-available.yaml #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Check if runner present' | ||
on: workflow_dispatch | ||
jobs: | ||
The jobs key groups together all the jobs that run in the workflow file. | ||
run-echo: | ||
runs-on: "stakater-nonprod" | ||
steps: | ||
- name: Install | ||
run: echo "Hello from Runner" |