mirror of
https://github.com/kou029w/_.git
synced 2025-02-07 09:38:46 +00:00
13 lines
256 B
YAML
13 lines
256 B
YAML
name: github-os-sample
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
name:
|
|
description: runs-on
|
|
required: true
|
|
default: ubuntu-latest
|
|
jobs:
|
|
main:
|
|
runs-on: ${{ github.event.inputs.os }}
|
|
steps:
|
|
- run: echo 'hello world!'
|