We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ed8c54 commit 17cbfbdCopy full SHA for 17cbfbd
1 file changed
.github/workflows/blank.yml
@@ -1,13 +1,21 @@
1
name: checker
2
on:
3
+ workflow_dispatch:
4
+ inputs:
5
+ chosen-os:
6
+ required: true
7
+ type: choice
8
+ options:
9
+ - lowpower
10
+ - ubuntu-22.04
11
push:
12
branches: ["main"]
13
pull_request:
14
15
16
jobs:
17
unified_name_check:
- runs-on: ubuntu-22.04
18
+ runs-on: ${{ github.event_name == 'workflow_dispatch' && inputs.runner_os || 'ubuntu-22.04' }}
19
steps:
20
- name: install luajit
21
run: sudo apt-get install luajit -y
0 commit comments