ci #10833
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: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: "* * * * *" | |
| jobs: | |
| autogreen: | |
| if: github.repository == 'justoneapi/justoneapi-python' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v3 | |
| - name: Auto commit | |
| run: | | |
| git config --local user.name "Anonymous Committer" | |
| git config --local user.email "[email protected]" | |
| git commit --allow-empty -m "chore: auto empty commit at $(date)" | |
| git push |