issue #47 #573
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: delete old workflow runs | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete workflow runs | |
uses: MajorScruffy/delete-old-workflow-runs@v0.3.0 | |
with: | |
repository: th-schwarz/DynDRest # replace this with your own repository | |
#older-than-seconds: 604800 # remove all workflow runs older than 7 day | |
older-than-seconds: 14515200 # remove all workflow runs older than 6 month | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |