Update zero.test.ts #3083
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
mirror_job: | |
runs-on: ubuntu-latest | |
name: Mirror main branch to sandbox and gigabugs branch | |
steps: | |
- name: Mirror main to sandbox | |
id: mirror-sandbox | |
uses: google/[email protected] | |
with: | |
github-token: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
source: 'main' | |
dest: 'sandbox' | |
- name: Mirror main to gigabugs | |
id: mirror-gigabugs | |
uses: google/[email protected] | |
with: | |
github-token: ${{ secrets.PERSONAL_GITHUB_TOKEN }} | |
source: 'main' | |
dest: 'gigabugs' |