Aeon column: pin runs to Skill Runner + fix Source dropdown clipping#105
Merged
Conversation
…n clipping - github-runs now reads the per-workflow endpoint (/actions/workflows/aeon.yml/ runs) instead of the repo-wide list, so it shows only Skill Runner runs. The scheduler/messages workflows fire far more often and would otherwise bury skill runs off the first page. Drops the now-unused "Workflow" config field. - Source select: make the trigger w-full (the popup is w-(--anchor-width), so a w-fit trigger clipped long items) and shorten the labels.
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.
Follow-up polish on the
aeoncolumn (#104).Skill Runner only
github-runsnow reads GitHub's per-workflow endpoint…/actions/workflows/aeon.yml/runsinstead of the repo-wide run list. The scheduler (every 5 min) and messages workflows fire far more often, so a repo-wide page + client-side filter buried skill runs entirely. The dedicated endpoint returns only Skill Runner runs. The now-unused "Workflow" config field is removed.Source dropdown clipping
The Select popup is
w-(--anchor-width)(= trigger width) and the trigger wasw-fit, so long labels overflowed a narrow popup and clipped. Fixed by making the triggerw-fulland shortening the labels (Workflow runs (GitHub)→Skill runs (GitHub),Feed cards (dashboard)→Feed cards (local),Runs (dashboard)→Runs (local)).Verification
npm run build·tsc --noEmit·eslintclean. Live:github-runsagainst the template repo returns a clean empty result (aeon.yml has 0 runs there — it's meant to be forked); confirmed viagh apithat every field the mapper reads is populated on real run objects.