Skip to content

Update actions/checkout digest to eef6144 #67

Update actions/checkout digest to eef6144

Update actions/checkout digest to eef6144 #67

Workflow file for this run

name: PR Cleanup
on:
pull_request:
types: [closed]
jobs:
pr-cleanup:
runs-on: 'ubuntu-latest'
steps:
-
name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
with:
submodules: recursive
-
name: Delete Tags on Quay
id: delete_tags
env:
PR_NUMBER: '${{ github.event.pull_request.number }}'
QUAYIO_API_TOKEN: '${{ secrets.QUAYIO_API_TOKEN }}'
REPOSITORY: 'appuio/example-spring-boot'
run: |
curl -X DELETE -H "Authorization: Bearer ${QUAYIO_API_TOKEN}" https://quay.io/api/v1/repository/${REPOSITORY}/tag/pr-${PR_NUMBER}