Add debug step for GitHub token presence check

This commit is contained in:
JG2401
2026-05-02 22:22:12 +02:00
committed by GitHub
parent 45440892a8
commit 3b25a449f1

View File

@@ -14,6 +14,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Debug token presence
run: |
if [ -z "${{ secrets.GITHUB_TOKEN }}" ]; then
echo "TOKEN IS EMPTY"
exit 1
else
echo "TOKEN EXISTS"
fi
- name: Auto-merge
if: contains(github.event.pull_request.labels.*.name, 'auto-merge')
uses: fastify/github-action-merge-dependabot@v3