Delete Environment (default settings) #1
This file contains 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: Delete Environment (default settings) | |
on: | |
workflow_dispatch: {} | |
jobs: | |
delete: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: strumwolf/delete-deployment-environment@v2 | |
with: | |
token: ${{ github.token }} | |
environment: production | |
ref: csmstest | |
onlyRemoveDeployments: true |