Update badge for develop #624
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update feature branches after develop merge | |
permissions: | |
contents: write | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
jobs: | |
develop_update: | |
runs-on: ubuntu-latest | |
if: | | |
github.repository == 'drashna/qmk_userspace' && github.ref == 'refs/heads/develop' | |
strategy: | |
matrix: | |
branch: | |
- custom_drashna | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GH_BOT_SECRET }} | |
fetch-depth: 0 | |
- name: Disable automatic eol conversion | |
run: | | |
echo "* -text" > .git/info/attributes | |
- name: Checkout branch | |
run: | | |
git fetch origin develop ${{ matrix.branch }} | |
git checkout ${{ matrix.branch }} | |
- name: Update develop from master | |
id: update | |
run: | | |
git config --global user.name "Drashna Bot" | |
git config user.email [email protected] | |
git rebase origin/develop | |
# - name: Create Pull Request | |
# if: always() && steps.update.conclusion == 'failure' | |
# run: | | |
# git rebase --abort | |
# gh pr create -B ${{ matrix.branch }} -H develop --title 'Manually update ${{ matrix.branch }} branch after develop merge' --body 'Created by Github action' | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GH_BOT_SECRET }} | |
- name: Push updates to feature branch | |
if: steps.update.conclusion != 'failure' | |
run: | | |
git push origin ${{ matrix.branch }} --force-with-lease |