diff options
author | QMK Bot <hello@qmk.fm> | 2020-12-10 17:02:28 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-12-10 17:02:28 +0000 |
commit | f77f715aa2215ae08920f8c2929c3b181657456d (patch) | |
tree | d018f8ed0cfcce14c7b7f30e8a1243cc3a8af262 /.github/workflows/format.yaml | |
parent | 15373c8367df04248cdf1f1eb80d08109ca62b85 (diff) | |
parent | 6c4b6531fe8fed46bec54fae993a1bab8246dd7d (diff) | |
download | qmk_firmware-f77f715aa2215ae08920f8c2929c3b181657456d.tar.gz qmk_firmware-f77f715aa2215ae08920f8c2929c3b181657456d.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to '.github/workflows/format.yaml')
-rw-r--r-- | .github/workflows/format.yaml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml new file mode 100644 index 0000000000..ac0835c3af --- /dev/null +++ b/.github/workflows/format.yaml @@ -0,0 +1,34 @@ +name: Format Codebase + +on: + push: + branches: + - master + +jobs: + generate: + runs-on: ubuntu-latest + container: qmkfm/base_container + + # protect against those who develop with their fork on master + if: github.repository == 'qmk/qmk_firmware' + + steps: + - uses: actions/checkout@v2 + + - name: Install dependencies + run: | + apt-get update && apt-get install -y dos2unix + + - name: Format files + run: | + bin/qmk cformat + bin/qmk pyformat + bin/qmk fileformat + + - name: Commit files + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: "Format code according to conventions for ${GITHUB_SHA}" + commit_user_name: QMK Bot + commit_user_email: hello@qmk.fm |