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
26 changes: 26 additions & 0 deletions .github/workflows/gittensor-impact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Gittensor Impact

# renders the gittensor contributor-impact card and publishes it as release
# assets. runs weekly and on demand; github's image proxy caches the badge in
# the readme for a few hours, so more frequent runs would not change anything.
on:
schedule:
- cron: "0 14 * * 1"
workflow_dispatch:

# no ambient token scopes — the one job below opts into exactly what it needs
permissions: {}

jobs:
update:
runs-on: ubuntu-latest
permissions:
contents: write # publish the rendered svg cards to release assets
steps:
# third-party action pinned to the v1.1.4 commit sha, not a mutable tag,
# so a later upstream retag cannot silently change what runs in ci.
- uses: matthewevans/gittensor-impact-action@cc83f449b75cbfbd3f7c70f796ad79f0f1d5d593 # v1.1.4
with:
accent-color: "#ff6a00"
neutral-color: "#85898b"
title: "${{ github.repository }} is part of the Gittensor community"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<a href="https://pypi.org/project/vouch-kb/"><img src="https://img.shields.io/pypi/pyversions/vouch-kb.svg" alt="Python versions"></a>
<a href="LICENSE"><img src="https://img.shields.io/github/license/vouchdev/vouch.svg" alt="MIT licensed"></a>
<a href="https://x.com/vouch_dev"><img src="https://img.shields.io/badge/follow-%40vouch__dev-000000?logo=x&logoColor=white" alt="Follow @vouch_dev on X"></a>
<a href="https://gittensor.io/miners/repository?name=vouchdev/vouch"><img src="https://api.gittensor.io/repos/vouchdev%2Fvouch/badge.svg" alt="Gittensor impact"></a>
</p>

> Agents should not start every session with amnesia — but they shouldn't get to write whatever they want either.
Expand Down
Loading