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 5bf7c50 commit 8727bbcCopy full SHA for 8727bbc
.github/workflows/docs-link-check.yml
@@ -15,6 +15,11 @@ jobs:
15
steps:
16
- name: Check out repository
17
uses: actions/checkout@v4
18
+ with:
19
+ # For pull_request events, use the PR head (commit from the contributor's branch/repo)
20
+ repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
21
+ ref: ${{ github.event.pull_request.head.sha || github.sha }}
22
+ fetch-depth: 0
23
24
# Cache lychee results (e.g. to avoid hitting rate limits)
25
# https://lychee.cli.rs/github_action_recipes/caching/
0 commit comments