fix: prevent users from self-escalate to owners #277
Workflow file for this run
This file contains hidden or 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: 'Clean up Docker images from PR' | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| jobs: | |
| delete-tag: | |
| uses: ./.github/workflows/_delete-registry-tag.yml | |
| if: github.event.pull_request.head.repo.fork == false | |
| with: | |
| tag_name: pr-${{ github.event.pull_request.number }} |