Update triggers for link check Action (#3972)
Only check on changes to .md files, nightly, and on manual trigger. This was generating a lot of false positives in CI.
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
name: Check for bad links in documentation
|
||||
|
||||
on: [ pull_request]
|
||||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
# Only run on changes to .md files -- this check is too flakey to run on every PR
|
||||
- '**.md'
|
||||
workflow_dispatch: # Manual
|
||||
schedule:
|
||||
- cron: '0 6 * * *' # Nightly 6AM UTC
|
||||
|
||||
jobs:
|
||||
markdown-link-check:
|
||||
|
||||
Reference in New Issue
Block a user