Repro spurious DoesNotExistError #42
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
# Placeholder Action on `main` branch, to be implemented/customized on | |
# individual branches, to repro specific issues. | |
name: gha.yml | |
on: | |
workflow_dispatch: | |
inputs: | |
runs-on: | |
description: Host | |
type: choice | |
options: | |
- ubuntu-latest | |
- macos-latest | |
- macos-latest-xlarge | |
- windows-latest | |
jobs: | |
job: | |
runs-on: ${{ inputs.runs-on }} | |
steps: | |
- run: echo "Hello, World!" |