We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05d8e1b commit 2b52c86Copy full SHA for 2b52c86
1 file changed
.github/workflows/format.yml
@@ -60,13 +60,15 @@ jobs:
60
run: |
61
REM 'run-clang-format' script needs 'VCINSTALLDIR' env (among maybe others) to be set
62
call ./scripts/call-vcvars.cmd x64
63
- call ./scripts/run-clang-format.cmd origin/master
+ call ./scripts/format-changes.cmd origin/master
64
65
- name: Check for changes
66
id: check-changes
67
shell: cmd
68
69
git diff --quiet && echo has-changes=false>> %GITHUB_OUTPUT% || echo has-changes=true>> %GITHUB_OUTPUT%
70
+ REM Don't let the exit code of 'git diff' cause this step to fail
71
+ exit /b 0
72
73
- name: Create patch
74
if: steps.check-changes.outputs.has-changes == 'true'
0 commit comments