ci: remove `dependabot` step

Andrey Nering created

This is already included on meta.

Change summary

.github/workflows/build.yml | 23 -----------------------
1 file changed, 23 deletions(-)

Detailed changes

.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 }}