forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request qmk#6 from Drugantibus/merging-branch
Upstream fetch
- Loading branch information
Showing
6,380 changed files
with
185,622 additions
and
198,546 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,3 +92,4 @@ GRAPHICS | |
# hex files | ||
*.hex binary | ||
*.eep binary | ||
nix/sources.nix linguist-generated=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,42 @@ | ||
name: Format Codebase | ||
name: PR Lint Format | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
paths: | ||
- 'drivers/**' | ||
- 'lib/arm_atsam/**' | ||
- 'lib/lib8tion/**' | ||
- 'lib/python/**' | ||
- 'platforms/**' | ||
- 'quantum/**' | ||
- 'tests/**' | ||
- 'tmk_core/**' | ||
|
||
jobs: | ||
format: | ||
lint: | ||
runs-on: ubuntu-latest | ||
container: qmkfm/base_container | ||
|
||
# protect against those who develop with their fork on master | ||
if: github.repository == 'qmk/qmk_firmware' | ||
container: qmkfm/base_container | ||
|
||
steps: | ||
- uses: rlespinasse/github-slug-action@v3.x | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.API_TOKEN_GITHUB }} | ||
fetch-depth: 0 | ||
|
||
- name: Install dependencies | ||
run: | | ||
apt-get update && apt-get install -y dos2unix | ||
- uses: trilom/file-changes-action@v1.2.4 | ||
id: file_changes | ||
with: | ||
output: ' ' | ||
fileOutput: ' ' | ||
|
||
- name: Format files | ||
- name: Run qmk cformat and qmk pyformat | ||
shell: 'bash {0}' | ||
run: | | ||
bin/qmk cformat -a | ||
bin/qmk pyformat | ||
bin/qmk fileformat | ||
qmk cformat -n $(< ~/files.txt) | ||
cformat_exit=$? | ||
qmk pyformat -n | ||
pyformat_exit=$? | ||
- 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 | ||
commit_author: QMK Bot <hello@qmk.fm> | ||
exit $((cformat_exit + pyformat_exit)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.