Skip to content

Update Helm Docs

Update Helm Docs #32

Workflow file for this run

name: 'PR closed'
on:
pull_request_target:
branches: [main]
types: [closed]
jobs:
clean-image:
permissions:
contents: write
packages: write
name: Clean container image
runs-on: ubuntu-latest
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-ci') }}
steps:
- name: Delete image
uses: bots-house/[email protected]
continue-on-error: true
id: del
with:
owner: kedify
name: otel-add-on
token: ${{ secrets.GITHUB_TOKEN }}
tag: pr-${{ github.event.pull_request.number }}
- run: echo "OK, image not found"
if: job.steps.del.status == failure()