mirror of
https://github.com/MetaCubeX/meta-rules-dat.git
synced 2024-11-10 16:05:42 +08:00
17 lines
386 B
YAML
17 lines
386 B
YAML
|
name: Delete old workflow runs
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: '0 0 * * 0'
|
||
|
# Run monthly, at 00:00 on the 1st day of month.
|
||
|
|
||
|
jobs:
|
||
|
del_runs:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Delete workflow runs
|
||
|
uses: GitRML/delete-workflow-runs@main
|
||
|
with:
|
||
|
token: ${{ secrets.AUTH_PAT }}
|
||
|
repository: ${{ github.repository }}
|
||
|
retain_days: 7
|