Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply updates from cookiecutter #38

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/keepalive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Prevent scheduled workflows from being disabled due to inactivity.
#
# GitHub disables scheduled workflows after 60 days of repo inactivity:
#
# > Warning: To prevent unnecessary workflow runs, scheduled workflows may be
# > disabled automatically.
# > ... In a public repository, scheduled workflows are automatically disabled
# > when no repository activity has occurred in 60 days.
#
# https://docs.github.com/en/actions/using-workflows/disabling-and-enabling-a-workflow
#
# This keep-alive workflow triggers whenever one of the scheduled workflows
# listed below completes and prevents that scheduled workflow from being
# disabled.
name: Keepalive
on:
workflow_run:
workflows: [CI]
types: [completed]
branches: [main]
jobs:
Keepalive:
uses: hypothesis/workflows/.github/workflows/keepalive.yml@main
Loading