Update benchmark app (#6527) #829
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: Private Mirror Sync | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync: | |
if: github.repository == 'firebase/firebase-android-sdk' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
submodules: true | |
token: ${{ secrets.GOOGLE_OSS_BOT_TOKEN }} | |
committer: google-oss-bot <[email protected]> | |
- name: Force push HEAD to private repo main branch | |
run: | | |
git remote add mirror https://github.com/FirebasePrivate/firebase-android-sdk.git | |
git push mirror HEAD:main --force --verbose |