We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67edcba commit deaeadcCopy full SHA for deaeadc
.github/workflows/auto-merge.yml
@@ -8,7 +8,11 @@ jobs:
8
contents: write
9
id-token: write
10
runs-on: ubuntu-latest
11
- if: github.actor == 'dependabot[bot]'
+ # github.event.pull_request.user.login checks the actual PR author
12
+ # also verify the repository to prevent workflow runs on forks
13
+ if: |
14
+ github.event.pull_request.user.login == 'dependabot[bot]' &&
15
+ github.repository == 'contentful/experience-builder'
16
steps:
17
- name: Fetch Dependabot metadata
18
id: dependabot-metadata
0 commit comments