Fix e2e breaking #143
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: Downmerge Changes | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
Sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
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 |