feat!: Copier & Updater Aggregators + Frontend - #26
Open
PaulKMueller (PaulKMueller) wants to merge 29 commits into
Open
feat!: Copier & Updater Aggregators + Frontend#26PaulKMueller (PaulKMueller) wants to merge 29 commits into
PaulKMueller (PaulKMueller) wants to merge 29 commits into
Conversation
PaulKMueller (PaulKMueller)
requested review from
Pavel Zwerschke (pavelzw) and
Yannik Tausch (ytausch)
as code owners
August 18, 2026 16:32
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #26 +/- ##
==========================================
Coverage 100.00% 100.00%
==========================================
Files 49 53 +4
Lines 3077 3360 +283
==========================================
+ Hits 3077 3360 +283 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
PaulKMueller (PaulKMueller)
marked this pull request as draft
August 18, 2026 16:54
PaulKMueller (PaulKMueller)
force-pushed
the
copier-dashboard
branch
from
August 19, 2026 09:06
d3bb893 to
241648d
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
from
August 19, 2026 09:07
6461dad to
c3ffe91
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
copier-dashboard
branch
from
August 19, 2026 09:35
241648d to
d8f00d4
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
3 times, most recently
from
August 19, 2026 10:00
87b2448 to
caab3c9
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
copier-dashboard
branch
from
August 19, 2026 10:10
247ae31 to
523e42f
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
from
August 19, 2026 10:11
caab3c9 to
3c6e640
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
copier-dashboard
branch
from
August 19, 2026 10:49
523e42f to
ad05b86
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
from
August 19, 2026 10:49
3c6e640 to
2a29957
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
copier-dashboard
branch
from
August 19, 2026 12:19
ad05b86 to
2e705bc
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
3 times, most recently
from
August 19, 2026 12:53
72f2df4 to
72d85d6
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
copier-dashboard
branch
from
August 21, 2026 16:25
a7f1a08 to
3e96422
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
from
August 21, 2026 16:25
d9aaec2 to
dab2ceb
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
copier-dashboard
branch
from
August 25, 2026 11:02
3e96422 to
b311d62
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
from
August 25, 2026 11:02
dab2ceb to
1c3ebe1
Compare
PaulKMueller (PaulKMueller)
marked this pull request as ready for review
August 25, 2026 11:14
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
from
August 26, 2026 19:29
1c3ebe1 to
2e55981
Compare
PaulKMueller (PaulKMueller)
force-pushed
the
updater-reports
branch
from
August 29, 2026 19:23
25aba4c to
1079cf4
Compare
PaulKMueller (PaulKMueller)
changed the base branch from
copier-dashboard
to
main
August 29, 2026 19:51
| logger.info(f"Wrote updater results to {results_file}.") | ||
|
|
||
|
|
||
| def _github_workflow_url() -> str | None: |
There was a problem hiding this comment.
Introduced because the new aggregators need this functionality to properly display and refer to clickable URLs in the frontend.
It makes existing code for zizmor easier as well.
| @dataclass(frozen=True, slots=True) | ||
| class PullRequestResult: | ||
| updated: bool | ||
| number: int | None |
There was a problem hiding this comment.
Instead of just returning a bool when creating a PR, we return this object which also includes the PR number.
This is required to have the PR numbers available in the updater reports.
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.
Changes
To make this easier to review, here a brief overview of the changes:
Python Code & Setup:
workflows,pixi.toml, ...)quant-rangercommand to export the static frontend (+ documentation)Frontend Code:
frontend/:components/:dashboard/:data-table/:ui/: Generic components used all across the frontend (these are really lean in most cases)copier/: Components and hooks specific to the copier dashboardupdaters/: Components and hooks specific to the updater dashboardlib/: Application-wide reusable functionality (URL encoding/decoding, date formatting, ...)