diff --git a/.github/workflows/cleanup-resources.yaml b/.github/workflows/cleanup-resources.yaml new file mode 100644 index 0000000000..043e626a96 --- /dev/null +++ b/.github/workflows/cleanup-resources.yaml @@ -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 diff --git a/tests/cleanup_resources.py b/tests/cleanup_resources.py new file mode 100644 index 0000000000..e69de29bb2