Sync boilerplate #4
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: Sync boilerplate | |
| on: | |
| schedule: | |
| # Run action at 00:00 UTC on the 1st day of every month https://crontab.guru/#0_00_1_*_* | |
| - cron: '0 00 1 * *' | |
| # or trigger action manually | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| # Fallback to plain text output for reducing docker output | |
| # https://github.com/docker/compose/issues/8753#issuecomment-934473781 | |
| BUILDKIT_PROGRESS: plain | |
| # Disable PTY for Invoke to avoid issues in CI environments and reduce output | |
| INVOKE_PTY: false | |
| jobs: | |
| sync_boilerplate: | |
| name: Sync boilerplate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run | |
| uses: saritasa-nest/saritasa-python-open-source-boilerplate/.github/actions/sync_boilerplate@main | |
| with: | |
| app-id: ${{ secrets.SARITASA_GITHUB_BOT_ID }} | |
| app-private-key: ${{ secrets.SARITASA_GITHUB_BOT_PRIVATE_KEY }} | |
| - name: Report failure | |
| if: failure() && github.event_name == 'schedule' | |
| uses: saritasa-nest/saritasa-python-open-source-boilerplate/.github/actions/report_action_failure@main | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |