Merge pull request #3993 from amitsingh-007/b-fix-header-shrink #221
This file contains hidden or 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: Downmerge Changes | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| Sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Downmerge main -> renovate-updates | |
| run: | | |
| git config user.name 'github-actions[bot]' | |
| git config user.email 'github-actions[bot]@users.noreply.github.com' | |
| git checkout renovate-updates | |
| git merge -m 'Merge branch 'main' into renovate-updates' main | |
| git push origin renovate-updates |