Skip to content

Scheduled cleanup #12586

Scheduled cleanup

Scheduled cleanup #12586

---
name: Scheduled cleanup
on:
schedule:
- cron: "58 */6 * * *"
jobs:
cleanup:
runs-on: self-hosted
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v3
- id: go-version
run: echo "go_version=$(cat .go-version)" >>$GITHUB_OUTPUT
- uses: actions/setup-go@v3
with:
go-version: '${{ steps.go-version.outputs.go_version }}'
- run: go run ./internal/cmd/test-cleanup
# vim: set ts=2 sts=2 sw=2 et: