Skip to content

Commit 1169493

Browse files
authored
Merge pull request #174 from cass-community/bernhold-update-action3
More debugging
2 parents e51bdaa + 6c6059f commit 1169493

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/check-all-urls.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ on:
1616
# * * * * *
1717
# * is a special character in YAML so you have to quote this string
1818
- cron: '0 0 7 * *' # midnight on the seventh day (arbitrary) of every month
19+
- workflow_dispatch
1920

2021
jobs:
2122
build:
@@ -44,6 +45,8 @@ jobs:
4445
# Use common exclude list read in above
4546
exclude_urls: ${{ steps.ex-urls.outputs.content }}
4647
exclude_patterns: ${{ steps.ex-patterns.outputs.content }}
48+
# Add yml and json to the default file types to check
49+
file_types: ".md,.py,.rst,.html,.yml,.json"
4750
timeout: 10
4851
retry_count: 3
4952
print_all: false

.github/workflows/check-pr-urls.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Check URLs in Changed Files
22

3-
on: [pull_request, push, workflow_dispatch]
3+
on: [pull_request]
44

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

0 commit comments

Comments
 (0)