Equinix Metal Sweep #19
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: Equinix Metal Sweep | ||
on: | ||
schedule: | ||
- cron: '0 15 * * *' # before validation action | ||
workflow_dispatch: | ||
jobs: | ||
cleanup: | ||
if: secrets.ALLOW_SWEEP == 'true' # Only run the job if ALLOW_SWEEP is 'true' | ||
Check failure on line 10 in .github/workflows/equinix_metal_sweep.yml
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Equinix Metal Sweeper | ||
uses: equinix-labs/[email protected] | ||
with: | ||
authToken: ${{ secrets.EQUINIX_API_TOKEN }} | ||
projectID: ${{ secrets.EQUINIX_PROJECT_ID }} | ||
keepProject: true |