Skip to content

Commit c4e59ab

Browse files
committed
added linting and link_checks from reusable workflows
1 parent b45cdfc commit c4e59ab

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/workflows/check-links.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: 'Check Links'
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
8+
jobs:
9+
link_check:
10+
name: 'Link Check'
11+
uses: NIGMS/NIGMS-Sandbox/.github/workflows/check-links.yaml@main
12+
with:
13+
repo_link_ignore_list: ""

.github/workflows/notebook-lint.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: 'Lint Notebook'
2+
on:
3+
push:
4+
workflow_dispatch:
5+
permissions:
6+
contents: write
7+
id-token: write
8+
9+
jobs:
10+
lint:
11+
name: 'Linting'
12+
uses: NIGMS/NIGMS-Sandbox/.github/workflows/notebook-lint.yaml@main
13+
with:
14+
directory: .

0 commit comments

Comments
 (0)