This repository was archived by the owner on Jan 22, 2026. It is now read-only.
e2e cleanup #247
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: e2e cleanup | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" # At 00:00 every day | |
| workflow_dispatch: | |
| jobs: | |
| cleanup: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| id-token: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - name: Cleanup | |
| uses: ./.github/actions/e2e_cleanup_timeframe | |
| with: | |
| ghToken: ${{ secrets.GITHUB_TOKEN }} | |
| encryptionSecret: ${{ secrets.ARTIFACT_ENCRYPT_PASSWD }} | |
| azure_credentials: ${{ secrets.AZURE_E2E_DESTROY_CREDENTIALS }} | |
| openStackCloudsYaml: ${{ secrets.STACKIT_CI_CLOUDS_YAML }} | |
| stackitUat: ${{ secrets.STACKIT_CI_UAT }} |