-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
83a7ee6
commit 764f485
Showing
4 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: URLChecker | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
branches: | ||
- main | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
urlchecker: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: urlcheck - doc directory | ||
uses: urlstechie/urlchecker-action@master | ||
with: | ||
subfolder: doc | ||
# TODO: Check if I can just check all file types with an empty string for glob | ||
file_types: .json,.lua,.md,.txt,.vim,.yml | ||
|
||
- name: urlcheck - lua directory | ||
uses: urlstechie/urlchecker-action@master | ||
with: | ||
subfolder: lua | ||
# TODO: Check if I can just check all file types with an empty string for glob | ||
file_types: .json,.lua,.md,.txt,.vim,.yml | ||
|
||
- name: urlcheck - plugin directory | ||
uses: urlstechie/urlchecker-action@master | ||
with: | ||
subfolder: plugin | ||
# TODO: Check if I can just check all file types with an empty string for glob | ||
file_types: .json,.lua,.md,.txt,.vim,.yml | ||
|
||
- name: urlcheck - scripts directory | ||
uses: urlstechie/urlchecker-action@master | ||
with: | ||
subfolder: scripts | ||
# TODO: Check if I can just check all file types with an empty string for glob | ||
file_types: .json,.lua,.md,.txt,.vim,.yml | ||
|
||
- name: urlcheck - spec directory | ||
uses: urlstechie/urlchecker-action@master | ||
with: | ||
subfolder: spec | ||
# TODO: Check if I can just check all file types with an empty string for glob | ||
file_types: .json,.lua,.md,.txt,.vim,.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters