mirror of
https://github.com/qmk/qmk_firmware.git
synced 2026-06-20 14:23:45 -04:00
c638100030
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' 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>
43 lines
928 B
YAML
43 lines
928 B
YAML
name: PR Regenerate Files
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'data/constants/**'
|
|
- 'lib/python/**'
|
|
- 'quantum/rgblight/rgblight_breathe_table.h'
|
|
- 'quantum/keycodes.h'
|
|
- 'quantum/keymap_extras/**'
|
|
|
|
jobs:
|
|
regen:
|
|
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@v7
|
|
|
|
- name: Install dependencies
|
|
run: pip3 install -r requirements-dev.txt
|
|
|
|
- name: Run qmk generators
|
|
run: |
|
|
util/regen.sh
|
|
git diff
|
|
|
|
- name: Fail when regeneration required
|
|
run: |
|
|
git diff
|
|
for file in $(git diff --name-only); do
|
|
echo "File '${file}' Requires Regeneration"
|
|
echo "::error file=${file}::Requires Regeneration"
|
|
done
|
|
test -z "$(git diff --name-only)"
|