. 💥🐤 Canaries Prune #90
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: . 💥🐤 Canaries Prune | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| platform: | |
| description: '🐧🪟Limit to platform?' | |
| type: choice | |
| default: '' | |
| options: | |
| - 'all' | |
| - 'linux' | |
| - 'windows' | |
| required: false | |
| tag: | |
| description: 'Tag to prune' | |
| type: string | |
| required: true | |
| A2Q: | |
| description: 'Prune A2Q canaries (default: normal)' | |
| type: boolean | |
| default: false | |
| required: false | |
| permissions: | |
| id-token: write | |
| jobs: | |
| prune-previous-canaries: | |
| uses: ./.github/workflows/component_canaries_prune.yml | |
| with: | |
| PLATFORM: ${{ github.event.inputs.platform }} | |
| TAG: ${{ github.event.inputs.tag }} | |
| A2Q: ${{ github.event.inputs.A2Q }} | |
| secrets: | |
| AWS_VPC_SUBNET: ${{secrets.AWS_VPC_SUBNET}} |