From a33cbb194f7413a814b9dfa21b1ad298ec8c2e3c Mon Sep 17 00:00:00 2001 From: Yeikel Date: Tue, 25 Apr 2023 12:55:09 -0400 Subject: [PATCH] fix: typo (#415) --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 71c3a276..4295f372 100644 --- a/action.yml +++ b/action.yml @@ -47,13 +47,13 @@ runs: - name: Fetch metadata id: dependabot-metadata uses: dependabot/fetch-metadata@v1 - if: github.event_name == 'pull_request' && (github.actor == 'dependabot[bot]' || skip-verification == 'true') + if: github.event_name == 'pull_request' && (github.actor == 'dependabot[bot]' || inputs.skip-verification == 'true') with: skip-commit-verification: ${{ inputs.skip-commit-verification }} skip-verification : ${{ inputs.skip-verification }} - name: Merge/approve PR uses: actions/github-script@v6 - if: github.event_name == 'pull_request' && (github.actor == 'dependabot[bot]' || skip-verification == 'true') + if: github.event_name == 'pull_request' && (github.actor == 'dependabot[bot]' || inputs.skip-verification == 'true') with: github-token: ${{ inputs.github-token }} script: |