Skip to content

Commit 43787c8

Browse files
committed
Add tag identifying project status type
Signed-off-by: Aditya Sirish <[email protected]>
1 parent 9c8f8d4 commit 43787c8

8 files changed

+11
-1
lines changed

_data/data.yml

+4
Original file line numberDiff line numberDiff line change
@@ -701,15 +701,19 @@ projects:
701701
statuses:
702702
- &stealth
703703
name: "Stealth Mode"
704+
tag: "stealth"
704705
description: "Shhhh. We're still figuring things out internally."
705706
- &starting
706707
name: <span style="color:green">Sprouting</span>
708+
tag: "sprouting"
707709
description: "We're ready for use. Early adopters wanted!"
708710
- &adopted
709711
name: <span style="color:gold">Adopted</span>
712+
tag: "adopted"
710713
description: "Many people are using this. Join them!"
711714
- &retired
712715
name: <span style="color:silver">Retired</span>
716+
tag: "retired"
713717
description: "We learned what we can and are not actively developing anymore."
714718

715719
tags:

_test/data/test_01_projects_vs_project.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ projects:
2626
statuses:
2727
- &stealth
2828
name: "Stealth Mode"
29+
tag: "stealth"
2930
description: "Shhhh. We're still figuring things out internally."
3031

3132
tags:

_test/data/test_02_project_list_vs_str.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ projects:
2626
statuses:
2727
- &stealth
2828
name: "Stealth Mode"
29+
tag: "stealth"
2930
description: "Shhhh. We're still figuring things out internally."
3031

3132
tags:

_test/data/test_03_misspelled_alias.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ projects:
2626
statuses:
2727
- &stealth
2828
name: "Stealth Mode"
29+
tag: "stealth"
2930
description: "Shhhh. We're still figuring things out internally."
3031

3132
tags:

_test/data/test_04_unescaped_quotes.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ projects:
2626
statuses:
2727
- &stealth
2828
name: "Stealth Mode"
29+
tag: "stealth"
2930
description: "Shhhh. We're still figuring things out internally."
3031

3132
tags:

_test/data/test_05_alias_instead_of_str.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ projects:
2626
statuses:
2727
- &stealth
2828
name: "Stealth Mode"
29+
tag: "stealth"
2930
description: "Shhhh. We're still figuring things out internally."
3031

3132
tags:

_test/data/test_data.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ projects:
2626
statuses:
2727
- &stealth
2828
name: "Stealth Mode"
29+
tag: "stealth"
2930
description: "Shhhh. We're still figuring things out internally."
3031

3132
tags:

_test/yamale_schema.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ person:
2929
since: any(int(min=2010,max=2025), str())
3030
interests: str()
3131
photo: str()
32-
interests: str()
3332
publications: list(include('person_publication'), required=False)
3433
deployments: str(required=False)
3534

@@ -59,6 +58,7 @@ proj_person:
5958

6059
status:
6160
name: str()
61+
tag: str()
6262
description: str()
6363

6464
tag:

0 commit comments

Comments
 (0)