Add GitHub Actions app - #3271
Open
nrkramer wants to merge 1 commit into
Open
Conversation
Shows GitHub Actions status for a set of repositories, one row per repo, colour-coded by the state of the latest workflow run and sorted worst-first so a failure is always on screen. Configuration is driven by the token: schema.Generated calls /user/repos and renders a checkbox per repository the token can reach, so there is nothing to type. Works with private repositories using a fine-grained token with Actions: Read-only.
nrkramer
requested review from
danielsitnik,
drudge and
matslina
as code owners
September 6, 2026 01:58
Next StepsHello! Thank you so much for your change 🤜 🤛 . There are a few things you need to do:
Manual Review RequiredHang tight! A Tidbyt engineer will be by shortly to review your change. Here is what they will be looking for:
|
|
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
Author
|
I have read the CLA Document and I hereby sign the CLA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub Actions
CI status for a set of repositories, one row per repo, readable at a glance
from across a room.
Green means the last workflow run passed, red means it failed, amber means a
run is in flight. The header carries the worst state across everything being
watched, so a single glance says whether anything needs attention, and
+Nshows how many repos did not fit.
There is a
circleciapp and agitlabpipelinestatusapp, but nothing forGitHub Actions, which is what prompted this.
Configuration
schema.Generated, sourced from the token: the app calls/user/reposand renders one checkbox per repository that token can reach,most recently pushed first. Nothing to type and nothing to misspell.
owner/repolist for anythingpast the 60-repo picker limit.
Only
Actions: Read-onlyis required (plus the mandatoryMetadata), and theapp never writes anything. Private repositories work.
Rate limits
One request per watched repository cached for 60s, plus one request for the
repository list cached for an hour. With the display showing four rows and a
twelve-repo cap, this stays far inside the 5000 requests/hour budget.
Display notes
from the repository name where it repeats it (
Acme-Corp/AcmeEnginerendersas
engine). Without this, organization repos sharing a prefix all truncateto the same string at 64px and become indistinguishable.
blank for part of its cycle, which defeats the purpose of a glanceable app.
listing; with a token but nothing selected it says so rather than showing an
empty screen.
Checks
pixlet check,pixlet lint,pixlet community validate-manifestandpixlet community validate-iconsall pass. Rendered and run against realpublic and private repositories, and displayed on hardware.