Skip to content

Commit

Permalink
Update manual.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubakimoto authored Jun 25, 2024
1 parent 4090cda commit 0a956fe
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,28 @@ on:
description: 'Person to greet'
default: 'World'
required: true
runner:
description: 'GitHub hosted runner'
default: 'ubuntu-latest'
required: true
type: choice
options:
- ubuntu-latest
- ubuntu-24.04
- ubuntu-22.04
- ubuntu-20.04
- windows-latest
- windows-2022
- windows-2019
- macos-latest
- macos-12
- macos-11
- macos-13
- macos-14

jobs:
greet:
runs-on: ubuntu-latest
runs-on: ${{ github.event.inputs.runner }}
steps:
- name: Send greeting
run: echo "Hello ${{ github.event.inputs.name }}"

0 comments on commit 0a956fe

Please sign in to comment.