Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions generated/badges.readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<a href="https://ctrlrun.dev/docs/how-this-is-built"><img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/CTRLRun/ctrlrun/badges/tests-badge.json" alt="Tests"></a>
<a href="https://ctrlrun.dev/docs/security/verify-guarantees"><img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/CTRLRun/ctrlrun/badges/verify-badge.json" alt="CTRLRun verified"></a>
<a href="https://scorecard.dev/viewer/?uri=github.com/CTRLRun/ctrlrun"><img src="https://api.scorecard.dev/projects/github.com/CTRLRun/ctrlrun/badge" alt="OpenSSF Scorecard"></a>
<a href="https://www.bestpractices.dev/projects/14615"><img src="https://www.bestpractices.dev/projects/14615/badge" alt="OpenSSF Best Practices"></a>
<a href="https://github.com/CTRLRun/ctrlrun/blob/main/LICENSE"><img src="https://img.shields.io/pypi/l/ctrlrun?color=B8730A" alt="License"></a>
</p>
<!-- end generated -->
8 changes: 7 additions & 1 deletion tools/docs_audit/render_badges.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ class Badge:

#: The row, in reading order: how often it is cloned, what it is, how often it is installed,
#: where it is documented, that it builds, is analysed and is fuzzed, that its own suite is this
#: big, that its guarantees were checked, how its supply chain scores, and the licence. Every entry is a
#: big, that its guarantees were checked, how its supply chain scores, which best practices it
#: self-certifies (each answer is a URL a reader can check), and the licence. Every entry is a
#: claim a reader can follow to the thing that measured it; an entry that is not stops being a
#: badge and becomes decoration, which is the test the three removed ones failed.
BADGES: tuple[Badge, ...] = (
Expand Down Expand Up @@ -137,6 +138,11 @@ class Badge:
"https://api.scorecard.dev/projects/github.com/CTRLRun/ctrlrun/badge",
"https://scorecard.dev/viewer/?uri=github.com/CTRLRun/ctrlrun",
),
Badge(
"OpenSSF Best Practices",
"https://www.bestpractices.dev/projects/14615/badge",
"https://www.bestpractices.dev/projects/14615",
),
Badge(
"License",
"https://img.shields.io/pypi/l/ctrlrun?color=B8730A",
Expand Down
Loading