Skip to content

Commit 2b03bf0

Browse files
authored
Fix update Dependabot PR workflow (#3065)
This fixes a small thing I missed in #3064.
1 parent f4cb049 commit 2b03bf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
jobs:
1818
is-fork-pull-request:
1919
name: Determine whether this issue comment was on a pull request from a fork
20-
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '@metamaskbot update-pr') }}
20+
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, '@metamaskbot update-pr') || inputs.dependabot == true }}
2121
runs-on: ubuntu-latest
2222
outputs:
2323
IS_FORK: ${{ steps.is-fork.outputs.IS_FORK }}

0 commit comments

Comments
 (0)