2021-11-17 20:05:12 +00:00
|
|
|
name: Lint Format
|
|
|
|
|
2022-12-22 23:41:16 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-11-17 20:05:12 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2023-03-17 01:32:09 +00:00
|
|
|
container: ghcr.io/qmk/qmk_cli
|
2021-11-17 20:05:12 +00:00
|
|
|
|
|
|
|
steps:
|
2023-02-28 20:27:11 +00:00
|
|
|
- name: Disable safe.directory check
|
|
|
|
run : git config --global --add safe.directory '*'
|
|
|
|
|
2023-09-05 17:50:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-11-17 20:05:12 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2022-08-08 16:30:26 +00:00
|
|
|
- name: Disable automatic eol conversion
|
|
|
|
run: |
|
|
|
|
echo "* -text" > .git/info/attributes
|
|
|
|
|
2022-02-22 18:24:18 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
pip3 install -r requirements-dev.txt
|
|
|
|
|
2021-11-17 20:05:12 +00:00
|
|
|
- name: Run qmk formatters
|
|
|
|
shell: 'bash {0}'
|
|
|
|
run: |
|
|
|
|
qmk format-c -a
|
2021-11-17 23:02:45 +00:00
|
|
|
qmk format-python -a
|
2021-11-17 20:05:12 +00:00
|
|
|
qmk format-text -a
|
|
|
|
git diff
|
|
|
|
|
|
|
|
- uses: rlespinasse/github-slug-action@v3.x
|
|
|
|
|
|
|
|
- name: Become QMK Bot
|
|
|
|
run: |
|
|
|
|
git config user.name 'QMK Bot'
|
|
|
|
git config user.email 'hello@qmk.fm'
|
|
|
|
|
|
|
|
- name: Create Pull Request
|
2024-03-05 11:48:25 +00:00
|
|
|
uses: peter-evans/create-pull-request@v6
|
2021-11-17 20:05:12 +00:00
|
|
|
if: ${{ github.repository == 'qmk/qmk_firmware'}}
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.QMK_BOT_TOKEN }}
|
|
|
|
delete-branch: true
|
|
|
|
branch: bugfix/format_${{ env.GITHUB_REF_SLUG }}
|
|
|
|
author: QMK Bot <hello@qmk.fm>
|
|
|
|
committer: QMK Bot <hello@qmk.fm>
|
|
|
|
commit-message: Format code according to conventions
|
|
|
|
title: '[CI] Format code according to conventions'
|