Cleanup test env #160
Workflow file for this run
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: 'Cleanup test env' | |
| # Cleans up our atlas cloud dev and qa organizations used for testing. | |
| on: | |
| workflow_dispatch: # workflow can be run manually | |
| workflow_call: # workflow runs from Test Suite | |
| jobs: | |
| cleanup-test-env-general: | |
| runs-on: ubuntu-latest | |
| permissions: {} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - uses: ./.github/templates/clean-atlas-org | |
| name: Clean Atlas Org Dev | |
| env: | |
| MONGODB_ATLAS_PUBLIC_KEY: ${{ secrets.MONGODB_ATLAS_PUBLIC_KEY_CLOUD_DEV }} | |
| MONGODB_ATLAS_PRIVATE_KEY: ${{ secrets.MONGODB_ATLAS_PRIVATE_KEY_CLOUD_DEV }} | |
| MONGODB_ATLAS_ORG_ID: ${{ vars.MONGODB_ATLAS_ORG_ID_CLOUD_DEV }} | |
| MONGODB_ATLAS_BASE_URL: ${{vars.MONGODB_ATLAS_BASE_URL}} | |
| cleanup-test-env-qa: | |
| runs-on: ubuntu-latest | |
| permissions: {} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - uses: ./.github/templates/clean-atlas-org | |
| name: Clean Atlas Org QA | |
| env: | |
| MONGODB_ATLAS_PUBLIC_KEY: ${{ secrets.MONGODB_ATLAS_PUBLIC_KEY_CLOUD_QA }} | |
| MONGODB_ATLAS_PRIVATE_KEY: ${{ secrets.MONGODB_ATLAS_PRIVATE_KEY_CLOUD_QA }} | |
| MONGODB_ATLAS_ORG_ID: ${{ vars.MONGODB_ATLAS_ORG_ID_CLOUD_QA }} | |
| MONGODB_ATLAS_BASE_URL: ${{ vars.MONGODB_ATLAS_BASE_URL_QA }} |