Skip to content

Commit

Permalink
fix: check on user instead of actor in dependabot check (#25496)
Browse files Browse the repository at this point in the history
  • Loading branch information
fkiriakos07 authored Dec 23, 2024
1 parent b886d9c commit 9ddd318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-mdn-urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
update-mdn-urls:
if: github.repository == 'mdn/browser-compat-data' && github.actor == 'dependabot[bot]' && startsWith(github.head_ref, 'dependabot/npm_and_yarn/ddbeck/mdn-content-inventory-')
if: github.repository == 'mdn/browser-compat-data' && github.event.pull_request.user.login == 'dependabot[bot]' && startsWith(github.head_ref, 'dependabot/npm_and_yarn/ddbeck/mdn-content-inventory-')
name: Update MDN urls
runs-on: ubuntu-latest

Expand Down

0 comments on commit 9ddd318

Please sign in to comment.