File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 19
19
bazel-target-prefix : ' //dotnet'
20
20
21
21
browser-test :
22
- if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[run dotnet]') == true }}
22
+ if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[dotnet]') == true }}
23
23
needs : check_workflow
24
24
runs-on : ' windows-latest'
25
25
strategy :
Original file line number Diff line number Diff line change 24
24
bazel-target-prefix : ' //java'
25
25
26
26
build :
27
- if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[run java]') == true }}
27
+ if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[java]') == true }}
28
28
needs : check_workflow
29
29
runs-on : ubuntu-latest
30
30
steps :
Original file line number Diff line number Diff line change 21
21
bazel-target-prefix : ' //javascript'
22
22
23
23
node_tests :
24
- if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[run javascript ]') == true }}
24
+ if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[js ]') == true }}
25
25
needs : check_workflow
26
26
runs-on : ubuntu-latest
27
27
strategy :
Original file line number Diff line number Diff line change 21
21
bazel-target-prefix : ' //py'
22
22
23
23
tox_linting :
24
- if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[run python ]') == true }}
24
+ if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[py ]') == true }}
25
25
needs : check_workflow
26
26
runs-on : ubuntu-latest
27
27
steps :
Original file line number Diff line number Diff line change 21
21
bazel-target-prefix : ' //rb'
22
22
23
23
build :
24
- if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[run ruby ]') == true }}
24
+ if : ${{ needs.check_workflow.outputs.result == 'true' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(toJson(github.event.commits), '[rb ]') == true }}
25
25
needs : check_workflow
26
26
runs-on : ubuntu-latest
27
27
strategy :
You can’t perform that action at this time.
0 commit comments