mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 01:14:28 -05:00
80917921e3
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
25 lines
618 B
YAML
25 lines
618 B
YAML
name: e2e weekly cleanup
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * 0" # At 00:00 every Sunday UTC
|
|
workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
cleanup:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: read
|
|
id-token: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
|
|
|
- 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 }}
|