diff options
author | Erovia <Erovia@users.noreply.github.com> | 2021-05-18 21:26:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 21:26:17 +0200 |
commit | 3023015c5b9417b18b59be41664e2af8e9f18a79 (patch) | |
tree | ce0e3445a96c443f1b45c6de5f977daf11067ccb /.github/workflows | |
parent | 1c81e69503a0c69b46ed7f4f94b040b67489bbf4 (diff) |
Make sure 'cformat' only runs on core files (#12909)
Co-authored-by: Zach White <skullydazed@drpepper.org>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/format.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 6d13e78945..c17a04a542 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -34,7 +34,7 @@ jobs: - name: Run qmk cformat and qmk pyformat shell: 'bash {0}' run: | - qmk cformat -n $(< ~/files.txt) + qmk cformat --core-only -n $(< ~/files.txt) cformat_exit=$? qmk pyformat -n pyformat_exit=$? |