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

NEW Create action #1

Merged
merged 1 commit into from
Jun 9, 2022
Merged
Show file tree
Hide file tree
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
12 changes: 12 additions & 0 deletions .github/workflows/auto-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Auto-tag
on:
push:
tags:
- '*.*.*'
jobs:
auto-tag:
name: Auto-tag
runs-on: ubuntu-latest
steps:
- name: Auto-tag
uses: silverstripe/gha-auto-tag@main
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__response.json
GuySartorelli marked this conversation as resolved.
Show resolved Hide resolved
__response.yml
26 changes: 24 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
# gha-keepalive
GitHub Action - Periodically re-enable repository cron workflows
# GitHub Actions - Keepalive

GitHub Action - Periodically re-enable all repository cron workflows that would otherwise auto-disable after 60 days of no repository activity - see [GitHub docs](https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration#disabling-and-enabling-workflows).

## Usage

GuySartorelli marked this conversation as resolved.
Show resolved Hide resolved
There are no inputs for configuring this action - just define your schedule so that it runs every 60 days or less (in the below example it is run on the first of each month).

**.github/workflows/keepalive.yml**
```yml
name: Keepalive
on:
# Run on a schedule of once per month
schedule:
- cron: '0 0 1 * *'
workflow_dispatch:
jobs:
keepalive:
name: Keepalive
runs-on: ubuntu-latest
steps:
- name: Keepalive
uses: silverstripe/gha-keepalive@main
```
57 changes: 57 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Keepalive repository cron workflows
description: GitHub Action to re-enable repository cron workflows to prevent them from stopping after 60 days

runs:
using: composite
steps:

- name: Keepalive
shell: bash
env:
GITHUB_REPOSITORY: ${{ github.repository }}
run: |
# https://docs.github.com/en/rest/actions/workflows#list-repository-workflows
RESP_CODE=$(curl -w %{http_code} -s -o __response.json \
-X GET https://api.github.com/repos/$GITHUB_REPOSITORY/actions/workflows \
GuySartorelli marked this conversation as resolved.
Show resolved Hide resolved
-H "Accept: application/vnd.github.v3+json")
if [[ $RESP_CODE != "200" ]]; then
echo "Unable to read repository workflows - HTTP response code was $RESP_CODE"
exit 1
fi
IDS=$(jq -r .workflows[].id __response.json)
if [[ $IDS == "" ]]; then
echo "This repository has no workflows"
exit 0
fi
for ID in $IDS; do
PTH=$(jq -r ".workflows[] | select(.id==$ID) | .path" __response.json)
URL=$(jq -r ".workflows[] | select(.id==$ID) | .html_url" __response.json)
URL=${URL//github\.com/raw.githubusercontent.com}
URL=${URL//$GITHUB_REPOSITORY\/blob/$GITHUB_REPOSITORY}
# Fetch raw workflow yml
RESP_CODE=$(curl -w %{http_code} -s -o __response.yml \
-X GET $URL \
-H "Accept: application/vnd.github.v3+json")
if [[ $RESP_CODE != "200" ]]; then
echo "Unable to fetch raw content for workflow $PTH with ID $ID from $URL - http response code was $RESP_CODE"
echo "Workflow is probably not on default branch"
echo "If this workflow runs on a cron, it will not keepalive"
else
YML=$(cat __response.yml)
RX="schedule:\s+- cron:"
if ! [[ $YML =~ $RX ]]; then
echo "Workflow $PTH with ID $ID does not run on a cron, no need to re-enable"
else
# https://docs.github.com/en/rest/actions/workflows#enable-a-workflow
RESP_CODE=$(curl -w %{http_code} -s -o /dev/null \
-X PUT https://api.github.com/repos/$GITHUB_REPOSITORY/actions/workflows/$ID/enable \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ github.token }}")
if [[ $RESP_CODE != "204" ]]; then
echo "Unable to enable workflow $PTH with ID $ID - HTTP response code was $RESP_CODE"
exit 1
fi
echo "Re-enabled workflow $PTH with ID $ID"
fi
fi
done