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 a0bc41f commit f205389Copy full SHA for f205389
.github/workflows/ci.yml
@@ -62,7 +62,7 @@ jobs:
62
63
- name: Save cached Linkcheck
64
id: cache-linkcheck-save
65
- if: ${{ !cancelled() && github.event_name == 'schedule' }}
+ if: ${{ !cancelled() }}
66
uses: actions/cache/save@v4
67
with:
68
path: book/linkcheck/cache.json
ci/linkcheck.sh
@@ -15,7 +15,7 @@ if [ -z "$ENABLE_LINKCHECK" ] ; then
15
fi
16
17
# https://docs.github.com/en/actions/reference/environment-variables
18
-if [ "$GITHUB_EVENT_NAME" = "schedule" ] ; then # running in scheduled job
+if [ "$GITHUB_EVENT_NAME" = "pull_request" ] ; then # running in scheduled job
19
FLAGS=""
20
USE_TOKEN=1
21
0 commit comments