Fix indentation and formatting in dependabot workflow

This commit is contained in:
JG2401
2026-05-30 15:51:49 +02:00
committed by GitHub
parent 9c155f6dfe
commit 78fce0e19e

View File

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