2022-03-15 12:49:23 +00:00
|
|
|
name: Update feature branches after develop merge
|
|
|
|
|
2022-12-22 23:41:16 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2022-03-15 12:49:23 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
feature_branch_update:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
if: github.repository == 'qmk/qmk_firmware'
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
branch:
|
|
|
|
- xap
|
|
|
|
|
|
|
|
steps:
|
2022-06-29 06:44:54 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-03-15 12:49:23 +00:00
|
|
|
with:
|
2022-03-15 23:27:55 +00:00
|
|
|
token: ${{ secrets.QMK_BOT_TOKEN }}
|
2022-03-15 12:49:23 +00:00
|
|
|
fetch-depth: 0
|
|
|
|
|
2022-08-08 18:05:41 +00:00
|
|
|
- name: Disable automatic eol conversion
|
|
|
|
run: |
|
|
|
|
echo "* -text" > .git/info/attributes
|
|
|
|
|
2022-03-15 12:49:23 +00:00
|
|
|
- name: Checkout branch
|
|
|
|
run: |
|
|
|
|
git fetch origin develop ${{ matrix.branch }}
|
|
|
|
git checkout ${{ matrix.branch }}
|
|
|
|
|
|
|
|
- name: Update branch from develop
|
|
|
|
run: |
|
|
|
|
git config --global user.name "QMK Bot"
|
|
|
|
git config --global user.email "hello@qmk.fm"
|
|
|
|
git merge origin/develop
|
|
|
|
git push origin ${{ matrix.branch }}
|