Merge pull request #9898 from sprt/gha-cleanup-job

ci: Add scheduled job to cleanup resources, pt. I
This commit is contained in:
Steve Horsman 2024-06-25 19:11:30 +01:00 committed by GitHub
commit c9df743dab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
name: Cleanup dangling Azure resources
on:
schedule:
- cron: "0 */6 * * *"
workflow_dispatch:
jobs:
cleanup-resources:
runs-on: ubuntu-latest
secrets: inherit
steps:
- name: Cleanup resources
run: python3 tests/cleanup_resources.py

View File