Check repo in docker workflow (#860)

This commit is contained in:
Dominik
2025-06-08 20:18:36 +02:00
committed by Alexander Medvedev
parent 9286d0d828
commit 7ec9dbf80c

View File

@@ -20,6 +20,13 @@ jobs:
id-token: write
steps:
- name: Check Repository
run: |
if [ "${{ github.repository }}" != "Pumpkin-MC/Pumpkin" ]; then
echo "Not the target repository. Exiting successfully."
exit 0
fi
- name: Checkout
uses: actions/checkout@v4