diff options
author | Joel Challis <git@zvecr.com> | 2021-11-23 01:20:46 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 12:20:46 +1100 |
commit | 6f425c8aa67c0036c002ee3aa24a81887d31ccfe (patch) | |
tree | 93a3257826b327a5133e749e65be34aefc25cea3 /.github/workflows | |
parent | 155076889a610b991ff3214d66f4828780c834cf (diff) | |
download | qmk_firmware-6f425c8aa67c0036c002ee3aa24a81887d31ccfe.tar.gz qmk_firmware-6f425c8aa67c0036c002ee3aa24a81887d31ccfe.zip |
Ignore exit codes for formatters (#15275)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/format.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 4d9711d73c..59c3d7511e 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -36,6 +36,7 @@ jobs: - name: Run qmk formatters shell: 'bash {0}' run: | + set +e cat ~/files_added.txt ~/files_modified.txt > ~/files_changed.txt qmk format-c --core-only $(< ~/files_changed.txt) qmk format-python $(< ~/files_changed.txt) |