2023-01-01 00:46:17 +00:00
|
|
|
name: Regenerate Files
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
regen:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2023-03-17 01:32:09 +00:00
|
|
|
container: ghcr.io/qmk/qmk_cli
|
2023-01-01 00:46:17 +00:00
|
|
|
|
|
|
|
steps:
|
2023-02-28 20:27:11 +00:00
|
|
|
- name: Disable safe.directory check
|
|
|
|
run : git config --global --add safe.directory '*'
|
|
|
|
|
2023-01-01 00:46:17 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Run qmk generators
|
|
|
|
run: |
|
|
|
|
util/regen.sh
|
|
|
|
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 22:34:35 +00:00
|
|
|
uses: peter-evans/create-pull-request@v5
|
2023-01-01 00:46:17 +00:00
|
|
|
if: ${{ github.repository == 'qmk/qmk_firmware'}}
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.QMK_BOT_TOKEN }}
|
|
|
|
delete-branch: true
|
2023-01-01 02:38:31 +00:00
|
|
|
branch: bugfix/regen_${{ env.GITHUB_REF_SLUG }}
|
2023-01-01 00:46:17 +00:00
|
|
|
author: QMK Bot <hello@qmk.fm>
|
|
|
|
committer: QMK Bot <hello@qmk.fm>
|
|
|
|
commit-message: Regenerate Files
|
|
|
|
title: '[CI] Regenerate Files'
|