12345678910111213141516171819202122232425262728293031323334 |
- name: "Infra: Image Testing: Delete"
- on:
- workflow_dispatch:
- pull_request:
- types: ['unlabeled', 'closed']
- jobs:
- remove:
- if: ${{ github.event.label.name == 'status/image_testing' || ( github.event.action == 'closed' && (contains(github.event.pull_request.labels, 'status/image_testing'))) }}
- runs-on: ubuntu-latest
- steps:
- - name: get branch name
- id: extract_branch
- run: |
- echo
- tag='${{ github.event.pull_request.number }}'
- echo "tag=${tag}" >> $GITHUB_OUTPUT
- - name: Configure AWS credentials for Kafka-UI account
- uses: aws-actions/configure-aws-credentials@v3
- with:
- aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
- aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- aws-region: us-east-1
- - name: Login to Amazon ECR
- id: login-ecr
- uses: aws-actions/amazon-ecr-login@v1
- with:
- registry-type: 'public'
- - name: Remove from ECR
- id: remove_from_ecr
- run: |
- aws ecr-public batch-delete-image \
- --repository-name kafka-ui-custom-build \
- --image-ids imageTag=${{ steps.extract_branch.outputs.tag }} \
- --region us-east-1
|