Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/check-all-urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ on:
# * * * * *
# * is a special character in YAML so you have to quote this string
- cron: '0 0 7 * *' # midnight on the seventh day (arbitrary) of every month
- workflow_dispatch

jobs:
build:
Expand Down Expand Up @@ -44,6 +45,8 @@ jobs:
# Use common exclude list read in above
exclude_urls: ${{ steps.ex-urls.outputs.content }}
exclude_patterns: ${{ steps.ex-patterns.outputs.content }}
# Add yml and json to the default file types to check
file_types: ".md,.py,.rst,.html,.yml,.json"
timeout: 10
retry_count: 3
print_all: false
4 changes: 3 additions & 1 deletion .github/workflows/check-pr-urls.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Check URLs in Changed Files

on: [pull_request, push, workflow_dispatch]
on: [pull_request]

jobs:
urlchecks:
Expand Down Expand Up @@ -38,6 +38,8 @@ jobs:
# Use common exclude list read in above
exclude_urls: ${{ steps.ex-urls.outputs.content }}
exclude_patterns: ${{ steps.ex-patterns.outputs.content }}
# Add yml and json to the default file types to check
file_types: ".md,.py,.rst,.html,.yml,.json"
timeout: 10
retry_count: 3
print_all: false