mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-08 00:22:14 +01:00
24 lines
523 B
YAML
24 lines
523 B
YAML
name: Pull Request Cleanup
|
|
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
cleanup:
|
|
name: Cleanup Docker images
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Cleanup
|
|
uses: ./.github/actions/clean
|
|
with:
|
|
docker_hub_username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
docker_hub_password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
snapshot_version: pr-${{ github.event.pull_request.number }}
|