Skip to content

Commit fc38cd3

Browse files
Merge branch 'main' into storage
# Conflicts: # .github/workflows/json_librarian.yml # .github/workflows/json_validate.yml # library.md
2 parents 067bfd3 + e417495 commit fc38cd3

File tree

5 files changed

+98
-18
lines changed

5 files changed

+98
-18
lines changed

.github/workflows/json_librarian.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ name: JSON Library Sorter and Doc Gen
33
on:
44
workflow_dispatch:
55
push:
6+
branches:
7+
- "main"
68
paths:
7-
- 'library/library.json'
8-
- '.github/workflows/json_librarian.yml'
9-
- '.github/workflows/scripts/library_doc/**'
9+
- "library/library.json"
10+
- ".github/workflows/json_librarian.yml"
11+
- ".github/workflows/scripts/library_doc/**"
1012

1113
jobs:
1214
librarian:

.github/workflows/json_validate.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,17 @@ name: Validate JSONs
33
on:
44
workflow_dispatch:
55
push:
6+
branches:
7+
- "main"
68
paths:
7-
- 'library/**'
8-
- '.github/workflows/json*.yml'
9+
- "library/**"
10+
- ".github/workflows/json*.yml"
911
pull_request:
12+
branches:
13+
- "main"
1014
paths:
11-
- 'library/**'
12-
- '.github/workflows/json*.yml'
15+
- "library/**"
16+
- ".github/workflows/json*.yml"
1317

1418
jobs:
1519
verify-json-validation:
@@ -21,4 +25,3 @@ jobs:
2125
with:
2226
schema: library/schema.json
2327
files: library/library.json
24-

0 commit comments

Comments
 (0)