From f191778605d08fcf82704e115b955b84efae2691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=D0=B0ramtamt=C4=81m?= <7326800+tarampampam@users.noreply.github.com> Date: Fri, 1 Nov 2024 11:48:46 +0400 Subject: [PATCH] Delete .github/workflows/dependabot.yml --- .github/workflows/dependabot.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml deleted file mode 100644 index 1a9f9cc..0000000 --- a/.github/workflows/dependabot.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: dependabot - -on: - pull_request: {} - -permissions: - contents: write - pull-requests: write - -jobs: - dependabot: # https://tinyurl.com/e69djmen - runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} - steps: - - uses: dependabot/fetch-metadata@v2 - id: metadata - with: {github-token: "${{ secrets.GITHUB_TOKEN }}"} - - - name: Enable auto-merge for Dependabot PRs - if: ${{ contains(fromJSON('["version-update:semver-minor", "version-update:semver-patch"]'), steps.metadata.outputs.update-type) }} - run: gh pr merge --auto --merge "$PR_URL" - continue-on-error: true - env: - PR_URL: ${{ github.event.pull_request.html_url }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}