mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-01-12 22:43:42 +08:00
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
## Github workflow to clean up old caches and workflow runs
|
|
|
|
name: Workflow Cleanup
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
cache-ttl:
|
|
description: "How many days to keep a cache (default: 7)"
|
|
required: false
|
|
default: "7"
|
|
workflow-ttl:
|
|
description: "How many days to keep a successful workflow (default: 30)"
|
|
required: false
|
|
default: "30"
|
|
failed-workflow-ttl:
|
|
description: "How many days to keep failed workflows (default: 15)"
|
|
required: false
|
|
default: "15"
|
|
schedule:
|
|
## Run every day at 00:00:00
|
|
- cron: "0 0 * * *"
|
|
|
|
## env vars are transferred to composite action steps
|
|
env:
|
|
CACHE_TTL: 7 ## number of days to keep a cache
|
|
WORKFLOW_TTL: 30 ## number of days to keep a successful workflow
|
|
FAILED_WORKFLOW_TTL: 15 ## number of days to keep a failed workflow
|
|
|
|
concurrency:
|
|
group: cleanup-${{ github.head_ref || github.ref }}
|
|
## Always cancel duplicate jobs
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
workflow-cleanup:
|
|
name: Workflow Cleanup
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Cleanup
|
|
id: cleanup
|
|
uses: stacks-network/actions/cleanup/workflows@main
|
|
with:
|
|
token: ${{ secrets.GH_TOKEN }}
|
|
cache-ttl: ${{ inputs.cache-ttl || env.CACHE_TTL}}
|
|
workflow-ttl: ${{ inputs.workflow-ttl || env.WORKFLOW_TTL}}
|
|
failed-workflow-ttl: ${{ inputs.failed-workflow-ttl || env.FAILED_WORKFLOW_TTL }}
|