main #95
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: main | |
on: | |
push: | |
branches: [main] | |
schedule: | |
- cron: '55 8 * * *' | |
jobs: | |
build: | |
name: main | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
- run: pip install pre-commit-mirror-maker | |
- run: git config --global user.name 'Github Actions' | |
- run: git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' | |
- run: pre-commit-mirror . --language=python --package-name=clang-format --id=clang-format --entry='clang-format -i' --types-or c++ --types-or c --types-or 'c#' --types-or 'cuda' --types-or 'java' --types-or 'javascript' --types-or 'json' --types-or 'objective-c' --types-or 'proto' --types-or 'textproto' --args=-style=file | |
- run: | | |
git remote set-url origin https://x-access-token:$GH_TOKEN@github.com/$GITHUB_REPOSITORY | |
git push origin HEAD:refs/heads/main --tags | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |