mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
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:
parent
884284adef
commit
a5b2e60075
9
.github/workflows/docs.yml
vendored
9
.github/workflows/docs.yml
vendored
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user