2021-11-17 12:05:12 -08:00
|
|
|
name: Lint Format
|
|
|
|
|
2023-02-01 01:42:57 -08:00
|
|
|
#permissions:
|
|
|
|
# contents: read
|
|
|
|
#
|
2022-12-15 19:35:04 -08:00
|
|
|
#on:
|
|
|
|
# push:
|
|
|
|
# branches:
|
|
|
|
# - master
|
|
|
|
# - develop
|
2021-11-17 12:05:12 -08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2023-03-16 18:32:09 -07:00
|
|
|
container: ghcr.io/qmk/qmk_cli
|
2021-11-17 12:05:12 -08:00
|
|
|
|
|
|
|
steps:
|
2023-02-28 12:27:11 -08:00
|
|
|
- name: Disable safe.directory check
|
|
|
|
run : git config --global --add safe.directory '*'
|
|
|
|
|
2022-06-28 23:44:54 -07:00
|
|
|
- uses: actions/checkout@v3
|
2021-11-17 12:05:12 -08:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2022-08-08 09:30:26 -07:00
|
|
|
- name: Disable automatic eol conversion
|
|
|
|
run: |
|
|
|
|
echo "* -text" > .git/info/attributes
|
|
|
|
|
2022-02-22 10:24:18 -08:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
pip3 install -r requirements-dev.txt
|
|
|
|
|
2021-11-17 12:05:12 -08:00
|
|
|
- name: Run qmk formatters
|
|
|
|
shell: 'bash {0}'
|
|
|
|
run: |
|
|
|
|
qmk format-c -a
|
2021-11-17 15:02:45 -08:00
|
|
|
qmk format-python -a
|
2021-11-17 12:05:12 -08: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
|
2023-04-05 15:34:35 -07:00
|
|
|
uses: peter-evans/create-pull-request@v5
|
2021-11-17 12:05:12 -08: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'
|