プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: syntax

Kohei Watanabe (Oct 8, 2020, 10:49 AM +0900) 0e90b29f 6a991166

+8 -2
+8 -2
.github/workflows/github-os-sample.yml
··· 1 1 name: github-os-sample 2 - on: workflow_dispatch 2 + on: 3 + workflow_dispatch: 4 + inputs: 5 + name: 6 + description: runs-on 7 + required: true 8 + default: ubuntu-latest 3 9 jobs: 4 10 main: 5 - runs-on: ${{ github.event.event_type }} 11 + runs-on: ${{ github.event.inputs.os }} 6 12 steps: 7 13 - run: echo 'hello world!'