This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
Bump k8s.io/apimachinery from 0.28.4 to 0.29.2 in /test/_projects/api-client #542
Workflow file for this run
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: "PR checks - Clean operator images" | |
on: | |
pull_request_target: | |
branches: | |
- master | |
- 'release-v**.x' | |
types: [closed] | |
env: | |
OPERATOR_REPO_REF: quay.io/redhat-developer/servicebinding-operator | |
jobs: | |
clean-operator-images: | |
name: "Clean operator images (PR)" | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Git Repository | |
uses: actions/checkout@v4 | |
- name: Clean PR images | |
uses: ./.github/actions/clean-images | |
with: | |
repository: ${{ env.OPERATOR_REPO_REF }} | |
tags: "pr-${{github.event.pull_request.number}}-.*" | |
username: ${{ secrets.QUAY_USERNAME }} | |
password: ${{ secrets.QUAY_TOKEN }} |