Keep Alive
The Keep Alive action is a utility that prevents GitHub repositories from becoming inactive by creating an empty commit and pushing it to the repository. This is particularly useful for maintaining GitHub Actions with scheduled triggers, which GitHub automatically disables after 60 days of repository inactivity.
How It Works
The action performs these steps:
- Checks out the repository
- Configures a local git user as "Keepalive"
- Creates an empty commit with the message "Keeping the repository alive"
- Pushes the commit to the repository
Usage
The most effective way to implement the Keep Alive pattern is by creating a scheduled workflow that:
- Runs on a regular schedule (e.g., daily)
- Checks how much time has passed since the last commit
- Invoke the
Keep Alive
action and creates an empty commit only when necessary (approaching the 60-day limit)
Implementation Example
Here is a complete example of a Keep Alive workflow:
name: Keep Alive
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Run at 00:00 every day
jobs:
keep_alive:
runs-on: 'ubuntu-latest'
permissions:
contents: write
actions: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Calculate days since last commit
id: commit_date
run: |
# Calculate days since last activity
LAST_COMMIT_DATE=$(git log -1 --format=%ct)
CURRENT_DATE=$(date +%s)
DIFFERENCE=$(( ($CURRENT_DATE - $LAST_COMMIT_DATE) / 86400 ))
echo "days_since_commit=$DIFFERENCE" >> $GITHUB_ENV
# Use the Keep Alive action when needed
- name: Keep Alive
if: env.days_since_commit >= '55'
uses: pagopa/dx/.github/actions/keep-alive@main
Adapting This Workflow
When implementing this pattern in your own repositories:
- Adjust the threshold - The 55-day threshold can be modified based on your specific needs
- Consider the schedule - The daily check frequency can be adjusted
- Ensure proper permissions:
- The workflow requires
contents: write
to push commits - Enable
Read and Write permissions
for workflows inside repository settings
- The workflow requires