2020-11-21 19:48:13 +00:00
|
|
|
name: Update develop after master merge
|
|
|
|
|
2022-12-22 23:41:16 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2020-11-21 19:48:13 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
develop_update:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
if: github.repository == 'qmk/qmk_firmware'
|
|
|
|
|
|
|
|
steps:
|
2023-09-05 17:50:04 +00:00
|
|
|
- uses: actions/checkout@v4
|
2020-11-21 19:48:13 +00:00
|
|
|
with:
|
2022-03-15 23:27:55 +00:00
|
|
|
token: ${{ secrets.QMK_BOT_TOKEN }}
|
2020-11-21 19:48:13 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
|
2022-08-08 18:05:41 +00:00
|
|
|
- name: Disable automatic eol conversion
|
|
|
|
run: |
|
|
|
|
echo "* -text" > .git/info/attributes
|
|
|
|
|
2020-11-21 19:48:13 +00:00
|
|
|
- name: Checkout develop
|
|
|
|
run: |
|
|
|
|
git fetch origin master develop
|
|
|
|
git checkout develop
|
|
|
|
|
|
|
|
- name: Update develop from master
|
|
|
|
run: |
|
2020-11-22 16:00:10 +00:00
|
|
|
git config --global user.name "QMK Bot"
|
|
|
|
git config --global user.email "hello@qmk.fm"
|
2020-11-21 19:48:13 +00:00
|
|
|
git merge origin/master
|
|
|
|
git push origin develop
|