Delete old artifacts #21824
This file contains hidden or 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 artifacts' | ||
| on: | ||
| schedule: | ||
| - cron: '0 * * * *' # Every hour | ||
| workflow_dispatch: | ||
| inputs: | ||
| message: | ||
| description: 'Message for manually triggering' | ||
| required: false | ||
| default: 'Triggered for Updates' | ||
| type: string | ||
| jobs: | ||
| delete-artifacts: | ||
|
Check failure on line 13 in .github/workflows/clear-artifacts.yml
|
||
| uses: mosip/kattu/.github/workflows/clear-artifacts.yml@master-java21 | ||
| secrets: | ||
| ACCESS_TOKEN: ${{ secrets.access_token }} | ||
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} | ||