From 26b5ceadb111992e03cf5a2c3a0509ce759eab77 Mon Sep 17 00:00:00 2001 From: Shukri Date: Wed, 7 Feb 2024 10:35:48 +0100 Subject: [PATCH] Fix typo in dependabot workflow (#80) Any PRs from dependabot should be auto merge regardless of the dependency being updated --- .github/workflows/dependabot-auto-merge.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index d8fa977..5dc8ae8 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -16,7 +16,6 @@ jobs: with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Enable auto-merge for Dependabot PRs - if: contains(steps.metadata.outputs.dependency-names, 'my-dependency') && steps.metadata.outputs.update-type == 'version-update:semver-patch' run: gh pr merge --auto --merge "$PR_URL" env: PR_URL: ${{github.event.pull_request.html_url}}