Skip to content

Commit 0d32cc1

Browse files
committed
add internal/external information in author meta
1 parent 0ac816f commit 0d32cc1

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

authors/singlestore.toml

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
name="SingleStore"
22
description="Engineering Team"
33
logo="singlestore"
4+
external=false

resources/author-check.py

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ def check_author(author_path):
2121
if 'description' not in meta:
2222
error(f'No `description` in `meta` section of {author_path}')
2323

24+
if 'external' not in meta:
25+
error(f'No `external` in `meta` section of {author_path}')
26+
2427
# Logo is optional, but if defined a corresponding image must exist
2528
if 'logo' in meta:
2629
logo_id = meta['logo']

0 commit comments

Comments
 (0)