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.
2 parents 4234ea3 + ce8b4be commit 908c479Copy full SHA for 908c479
.github/workflows/check-external-links.yml
@@ -8,7 +8,13 @@ jobs:
8
linkChecker:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v3
+ - name: Checkout code (merge of PR + base)
12
+ uses: actions/checkout@v4
13
+ with:
14
+ # For pull_request events, this is the "virtual" merge commit
15
+ # If the PR can't be merged (conflicts), this ref won't exist.
16
+ ref: ${{ github.event_name == 'pull_request' && format('refs/pull/{0}/merge', github.event.pull_request.number) || github.ref }}
17
+ fetch-depth: 0
18
19
- name: Link Checker
20
id: lychee
0 commit comments