From 045cb800124caf7f3382995b6ef2a4ce976007af Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Tue, 26 Aug 2025 10:32:28 -0300 Subject: [PATCH] ci: remove `dependabot` step This is already included on meta. --- .github/workflows/build.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2148fcb9f0fd7e7c1293577682cbf45f85eb324c..3511f7fe0c4f487eb3fc9009795361ada8e2eff7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,26 +9,3 @@ jobs: go-version-file: ./go.mod secrets: gh_pat: "${{ secrets.PERSONAL_ACCESS_TOKEN }}" - - dependabot: - needs: [build, lint] - runs-on: ubuntu-latest - permissions: - pull-requests: write - contents: write - if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}} - steps: - - id: metadata - uses: dependabot/fetch-metadata@v2 - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - - run: | - echo "Logging in..." - echo "${{ secrets.PERSONAL_ACCESS_TOKEN }}" | gh auth login --with-token - echo "Approving..." - gh pr review --approve "$PR_URL" - echo "Merging..." - gh pr merge --squash --auto "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}