Sentry fixes (#347) #112
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: Mirror main branch to main-mirror-for-wdb | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
lint_and_build: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Mirror branch | |
run: | | |
git pull --all | |
git switch -c main-mirror-for-wdb | |
git reset --hard origin/main | |
- name: Trigger rebuild | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
git commit --allow-empty -m "Trigger Vercel rebuild" | |
- name: Push branch | |
run: | | |
git push -f origin main-mirror-for-wdb |