Skip to content

Commit

Permalink
Fix update Dependabot PR workflow (#3065)
Browse files Browse the repository at this point in the history
This fixes a small thing I missed in #3064.
  • Loading branch information
Mrtenz authored Feb 5, 2025
1 parent f4cb049 commit 2b03bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
is-fork-pull-request:
name: Determine whether this issue comment was on a pull request from a fork
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '@metamaskbot update-pr') }}
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '@metamaskbot update-pr') || inputs.dependabot == true }}
runs-on: ubuntu-latest
outputs:
IS_FORK: ${{ steps.is-fork.outputs.IS_FORK }}
Expand Down

0 comments on commit 2b03bf0

Please sign in to comment.