From 4044cb38011076ef1656f3902608169ebf79e731 Mon Sep 17 00:00:00 2001 From: skye rogers Date: Mon, 24 Mar 2025 11:57:33 -0700 Subject: [PATCH] altered if statement checker for auto-merge in actions.yml --- .github/workflows/actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index ab24db12..dd3cb020 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -17,10 +17,10 @@ jobs: uses: dependabot/fetch-metadata@v2 with: alert-lookup: true - compat-lookup: true github-token: "${{ secrets.PAT_TOKEN }}" - name: Enable auto-merge for Dependabot PRs - if: (steps.dependabot-metadata.outputs.cvss == true && update_types == 'minor' || 'patch') + # if: (steps.dependabot-metadata.outputs.cvss == true && update_types == 'minor' || 'patch') + if: update_types == 'minor' || 'patch' run: gh pr merge --auto --merge "$PR_URL" env: PR_URL: ${{github.event.pull_request.html_url}}