Remove windows for publish actions as it's buggy right now #784
Workflow file for this run
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: Keep the repo alive | |
on: | |
schedule: | |
- cron: "22 12 */3 * *" | |
push: | |
pull_request: | |
fork: | |
status: | |
issues: | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.head_ref || github.run_id }}" | |
cancel-in-progress: true | |
jobs: | |
keep-alive: | |
name: Keep the repo alive | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
timeout-minutes: 5 | |
- uses: gautamkrishnar/keepalive-workflow@v2 | |
timeout-minutes: 5 | |
with: | |
use_api: false | |
committer_username: ${{ github.repository_owner }} | |
committer_email: ${{ github.repository_owner }}@users.noreply.github.com |