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