Skip to content

Commit

Permalink
fix(ci): check dependabot PR user instead of actor (#35739)
Browse files Browse the repository at this point in the history
check on dependabot user instead of actor
  • Loading branch information
fkiriakos07 committed Sep 4, 2024
1 parent 836c409 commit 36afe0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- uses: ahmadnassri/[email protected]
with:
Expand Down

0 comments on commit 36afe0a

Please sign in to comment.