Start/Stop Personal Spot #41548
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
# Useful if the spot runners are in a bad state | ||
name: Start/Stop Personal Spot | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
username: | ||
description: 'Username (optional)' | ||
required: false | ||
action: | ||
description: "Defaults to 'start', can be 'stop', 'restart'" | ||
required: false | ||
default: 'start' | ||
jobs: | ||
start-build: | ||
uses: ./.github/workflows/setup-runner.yml | ||
with: | ||
username: ${{ inputs.username || github.actor }} | ||
runner_type: builder-x86 | ||
runner_action: ${{ inputs.action }} | ||
Check failure on line 19 in .github/workflows/start-spot.yml GitHub Actions / Start/Stop Personal SpotInvalid workflow file
|
||
secrets: inherit |