Skip to content

Commit

Permalink
Add an action to delete stale artifacts (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmacfarl authored Apr 28, 2024
1 parent a7ae256 commit 3756535
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/artifact-management.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Artifact Management"

on:
workflow_dispatch:
schedule:
- cron: '15 8 1 * *'

jobs:
delete-artifacts:
runs-on: ubuntu-latest
steps:
- uses: dscaba/purge-artifacts-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
expire-in: 7days


0 comments on commit 3756535

Please sign in to comment.