c38fdfec9c
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 41 to 42. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v41...v42) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
83 lines
2.1 KiB
YAML
83 lines
2.1 KiB
YAML
name: PR Lint keyboards
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'keyboards/**'
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
container: ghcr.io/qmk/qmk_cli
|
|
|
|
steps:
|
|
- name: Disable safe.directory check
|
|
run : git config --global --add safe.directory '*'
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Install dependencies
|
|
run: pip3 install -r requirements-dev.txt
|
|
|
|
- name: Get changed files
|
|
id: file_changes
|
|
uses: tj-actions/changed-files@v42
|
|
|
|
- name: Print info
|
|
run: |
|
|
git rev-parse --short HEAD
|
|
echo ${{ github.event.pull_request.base.sha }}
|
|
echo '${{ steps.file_changes.outputs.all_changed_files}}'
|
|
|
|
- name: Run qmk lint
|
|
if: always()
|
|
shell: 'bash {0}'
|
|
run: |
|
|
QMK_CHANGES=$(echo -e '${{ steps.file_changes.outputs.all_changed_files}}' | sed 's/ /\n/g')
|
|
QMK_KEYBOARDS=$(qmk list-keyboards)
|
|
|
|
exit_code=0
|
|
|
|
for KB in $QMK_KEYBOARDS; do
|
|
KEYBOARD_CHANGES=$(echo "$QMK_CHANGES" | grep -E '^(keyboards/'${KB}'/)')
|
|
if [[ -z "$KEYBOARD_CHANGES" ]]; then
|
|
# skip as no changes for this keyboard
|
|
continue
|
|
fi
|
|
|
|
KEYMAP_ONLY=$(echo "$KEYBOARD_CHANGES" | grep -cv /keymaps/)
|
|
if [[ $KEYMAP_ONLY -gt 0 ]]; then
|
|
echo "linting ${KB}"
|
|
|
|
qmk lint --keyboard ${KB} && qmk info -l --keyboard ${KB}
|
|
exit_code=$(($exit_code + $?))
|
|
fi
|
|
done
|
|
|
|
qmk format-text ${{ steps.file_changes.outputs.all_changed_files}} || true
|
|
for file in ${{ steps.file_changes.outputs.all_changed_files}}; do
|
|
if ! git diff --quiet $file; then
|
|
echo "File '${file}' Requires Formatting"
|
|
echo "::error file=${file}::Requires Formatting"
|
|
exit_code=$(($exit_code + 1))
|
|
fi
|
|
done
|
|
|
|
if [[ $exit_code -gt 255 ]]; then
|
|
exit 255
|
|
fi
|
|
exit $exit_code
|
|
|
|
- name: Verify keyboard aliases
|
|
if: always()
|
|
shell: 'bash {0}'
|
|
run: |
|
|
git reset --hard
|
|
git clean -xfd
|
|
qmk ci-validate-aliases
|