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 c6a19e3 commit ad018caCopy full SHA for ad018ca
.github/actions/deploy-to-github-pages/action.yml
@@ -141,7 +141,10 @@ runs:
141
# A simple `grep` should work without any false positives,
142
# unless git-scm.com mentions the base URL of one of its forks,
143
# which is unlikely.
144
- run: '! grep -FInr "http:${base_url#https:}" public'
+ #
145
+ # To catch bugs early, let's always look for non-HTTPS links
146
+ # to git-scm.com.
147
+ run: '! grep -FInre "http://git-scm.com" -e "http:${base_url#https:}" public'
148
149
- name: check for broken links
150
id: lychee
0 commit comments