From e4aa347146ab96595eca59e6fc43471806dc79b4 Mon Sep 17 00:00:00 2001 From: JG2401 <76785435+JG2401@users.noreply.github.com> Date: Fri, 17 Jul 2026 22:17:16 +0200 Subject: [PATCH] Delete .github/workflows directory --- .github/workflows/dependabotautomerge.yml | 30 ----------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/dependabotautomerge.yml diff --git a/.github/workflows/dependabotautomerge.yml b/.github/workflows/dependabotautomerge.yml deleted file mode 100644 index b3d52ed..0000000 --- a/.github/workflows/dependabotautomerge.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Auto-merge Dependabot PRs - -on: - pull_request: - types: [opened, synchronize, reopened] - -permissions: - contents: write - pull-requests: write - -jobs: - automerge: - if: github.event.pull_request.user.login == 'dependabot[bot]' - 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 - with: - github-token: ${{ secrets.GH_TOKEN }}