chore: add avoid_redundant_argument_values to analyzer ignores (#913) #366
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: Mirror to Gitee | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - release/* | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Mirror to Gitee | |
| run: | | |
| git fetch --unshallow | |
| git remote add gitee https://trevor:${{secrets.GITEE_TOKEN}}@gitee.com/trevor/retrofit.dart.git | |
| git push -f gitee origin/master:master | |
| git push -f gitee origin/gh-pages:gh-pages | |
| git push --tags --prune |