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