File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 linux :
1212 description : " Linux"
1313 type : boolean
14- default : true
14+ default : false
1515 macos :
1616 description : " macOS"
1717 type : boolean
@@ -48,13 +48,12 @@ jobs:
4848 sudo udevadm trigger --subsystem-match=input || true
4949 test -e /dev/uinput
5050 sudo chmod 666 /dev/uinput
51- # Forward OS selections if triggered manually, otherwise use defaults for push/pr triggers
52- linux : ${{ (github.event_name == 'workflow_dispatch' && inputs.linux == true) || (github.event_name != 'workflow_dispatch' && true) }}
53- macos : ${{ (github.event_name == 'workflow_dispatch' && inputs.macos == true) || (github.event_name != 'workflow_dispatch' && false) }}
54- windows : ${{ (github.event_name == 'workflow_dispatch' && inputs.windows == true) || (github.event_name != 'workflow_dispatch' && false) }}
51+ linux : ${{ github.event_name != 'workflow_dispatch' || inputs.linux }}
52+ macos : ${{ github.event_name == 'workflow_dispatch' && inputs.macos }}
53+ windows : ${{ github.event_name == 'workflow_dispatch' && inputs.windows }}
5554
5655 # Forward manual force-run triggers, otherwise default to false on push/pr (allowing auto-triggering)
57- stylua : ${{ ( github.event_name == 'workflow_dispatch' && inputs.stylua == true) || false }}
58- luacheck : ${{ ( github.event_name == 'workflow_dispatch' && inputs.luacheck == true) || false }}
59- prettier : ${{ ( github.event_name == 'workflow_dispatch' && inputs.prettier == true) || false }}
60- tests : ${{ ( github.event_name == 'workflow_dispatch' && inputs.tests == true) || false }}
56+ stylua : ${{ github.event_name == 'workflow_dispatch' && inputs.stylua }}
57+ luacheck : ${{ github.event_name == 'workflow_dispatch' && inputs.luacheck }}
58+ prettier : ${{ github.event_name == 'workflow_dispatch' && inputs.prettier }}
59+ tests : ${{ github.event_name == 'workflow_dispatch' && inputs.tests }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments