File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,15 @@ permissions:
1919jobs :
2020 docs :
2121 name : Documentation
22- if : ${{ inputs.run-full-suite }}
22+ if : ${{ github.event_name == 'workflow_dispatch' || inputs.run-full-suite }}
2323 uses : ./.github/workflows/bazel.yml
2424 with :
2525 name : Documentation
2626 run : bazel run //rb:docs
2727
2828 steep-check :
2929 name : Type Check (Steep)
30- if : ${{ inputs.run-full-suite }}
30+ if : ${{ github.event_name == 'workflow_dispatch' || inputs.run-full-suite }}
3131 runs-on : ubuntu-latest
3232 steps :
3333 - name : Checkout code
4949
5050 unit-tests :
5151 name : Unit Tests
52- if : ${{ inputs.run-full-suite }}
52+ if : ${{ github.event_name == 'workflow_dispatch' || inputs.run-full-suite }}
5353 uses : ./.github/workflows/bazel.yml
5454 strategy :
5555 fail-fast : false
You can’t perform that action at this time.
0 commit comments