Skip to content

Cleanup integration deployments #804

Cleanup integration deployments

Cleanup integration deployments #804

name: Cleanup integration deployments
on:
workflow_dispatch:
schedule:
# every 10 mins
- cron: "*/10 * * * *"
jobs:
cleanup:
name: Clean up integration environment deployments
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Clean up integration environment
uses: ./.github/actions/delete-deployments
with:
environment: integration
# Delete 300 deployments at a time
num-of-pages: 3
# We start with page 2 because usually the first 200 deployments are still active, so we cannot delete them
starting-page: 2
- name: Collect Metrics
id: collect-gha-metrics
uses: smartcontractkit/push-gha-metrics-action@d2c2b7bdc9012651230b2608a1bcb0c48538b6ec
with:
basic-auth: ${{ secrets.GRAFANA_CLOUD_BASIC_AUTH }}
hostname: ${{ secrets.GRAFANA_CLOUD_HOST }}
this-job-name: Clean up integration environment deployments
continue-on-error: true