diff options
author | Joel Challis <git@zvecr.com> | 2021-11-23 00:49:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-23 00:49:18 +0000 |
commit | 155076889a610b991ff3214d66f4828780c834cf (patch) | |
tree | 905ecd7739785269ebe2b0ab3edcb691dbd29e4f /.github/workflows/format.yaml | |
parent | dbc7b535178020063f80aaaabac3ca8ff9f6e8bb (diff) | |
download | qmk_firmware-155076889a610b991ff3214d66f4828780c834cf.tar.gz qmk_firmware-155076889a610b991ff3214d66f4828780c834cf.zip |
Ignore deleted files when formatting codebase (#15274)
Diffstat (limited to '.github/workflows/format.yaml')
-rw-r--r-- | .github/workflows/format.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 2a309e0afd..4d9711d73c 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -36,9 +36,10 @@ jobs: - name: Run qmk formatters shell: 'bash {0}' run: | - qmk format-c --core-only $(< ~/files.txt) - qmk format-python $(< ~/files.txt) - qmk format-text $(< ~/files.txt) + cat ~/files_added.txt ~/files_modified.txt > ~/files_changed.txt + qmk format-c --core-only $(< ~/files_changed.txt) + qmk format-python $(< ~/files_changed.txt) + qmk format-text $(< ~/files_changed.txt) - name: Fail when formatting required run: | |