We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 402074e commit c244fb3Copy full SHA for c244fb3
.github/workflows/repo-checks.yml
@@ -48,13 +48,14 @@ jobs:
48
with:
49
install-flags: --ui
50
51
- - name: Run tools/presubmits
+ - name: Run tools/run_presubmit
52
# base_ref is "" in post-submit, skip the presubmit check in postsubmit
53
# as there is nothing do diff against.
54
if: ${{ github.base_ref != '' }}
55
- run: tools/run_presubmit \
56
- --merge-base origin/${{ github.base_ref }} \
57
- --skip-formatters=eslint,prettier
+ run: |
+ tools/run_presubmit \
+ --skip-formatters "eslint,prettier" \
58
+ --merge-base origin/${{ github.base_ref }}
59
60
- name: Check merged protos (tools/gen_all)
61
run: |
0 commit comments