-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added linting and link_checks from resuable workflows
- Loading branch information
1 parent
8f5bd1a
commit e662cdc
Showing
2 changed files
with
27 additions
and
0 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,13 @@ | ||
name: 'Check Links' | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
link_check: | ||
name: 'Link Check' | ||
uses: NIGMS/NIGMS-Sandbox/.github/workflows/check-links.yaml@main | ||
with: | ||
repo_link_ignore_list: "" |
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,14 @@ | ||
name: 'Lint Notebook' | ||
on: | ||
push: | ||
workflow_dispatch: | ||
permissions: | ||
contents: write | ||
id-token: write | ||
|
||
jobs: | ||
lint: | ||
name: 'Linting' | ||
uses: NIGMS/NIGMS-Sandbox/.github/workflows/notebook-lint.yaml@main | ||
with: | ||
directory: . |