We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 11b2f16 + 7f88420 commit dc6369dCopy full SHA for dc6369d
.github/workflows/docs-preview.yaml
@@ -30,6 +30,9 @@ jobs:
30
31
- name: Comment Credentials
32
uses: marocchino/sticky-pull-request-comment@v2
33
+ # Only run if PR comes from base repo
34
+ # Reason: forks cannot access secrets and this will always fail
35
+ if: github.event.pull_request.head.repo.full_name == github.repository
36
with:
37
GITHUB_TOKEN: ${{ github.token }}
38
header: codercom-preview-docs
renovate.json
@@ -10,5 +10,6 @@
10
],
11
"vulnerabilityAlerts": {
12
"enabled": "true"
13
- }
+ },
14
+ "ignoreDeps": ["express"]
15
}
0 commit comments