We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b0d0393 + bbfca7e commit 06ea45aCopy full SHA for 06ea45a
README.md
@@ -17,15 +17,15 @@ Extract information about the dependencies being updated by a Dependabot-generat
17
Create a workflow file that contains a step that uses: `dependabot/fetch-metadata@v2`, e.g.
18
19
```yaml
20
--- .github/workflows/dependabot-prs.yml
+# .github/workflows/dependabot-prs.yml
21
name: Dependabot Pull Request
22
on: pull_request
23
-if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'owner/my_repo'
24
jobs:
25
- build:
+ dependabot:
26
permissions:
27
pull-requests: read
28
runs-on: ubuntu-latest
+ if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'owner/my_repo'
29
steps:
30
- name: Fetch Dependabot metadata
31
id: dependabot-metadata
0 commit comments