feat: add a new Tinybird pipe to serve activity types by project [IN-511]#3489
Merged
borfast merged 1 commit intoOct 14, 2025
Merged
Conversation
epipav
reviewed
Oct 10, 2025
Collaborator
epipav
left a comment
There was a problem hiding this comment.
Let’s monitor and test (before deploying the actual thing) the performance of this pipe closely since it impacts every page and processes the entire data segment at runtime.
If we notice any performance degradation, we should consider switching to a materialized view or a copy pipe.
Base automatically changed from
feat/in-761-add-label-to-activityTypes
to
main
October 10, 2025 16:11
b00b345 to
30f41b1
Compare
gaspergrom
approved these changes
Oct 13, 2025
30f41b1 to
0f9c355
Compare
Signed-off-by: Raúl Santos <4837+borfast@users.noreply.github.com>
0f9c355 to
55180d5
Compare
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.
The activity type dropdown in some widgets of the Insights frontend currently shows every single activity type for every project, regardless of whether that project contains all those activity types.
We want to change this so that only activity types that exist for the given project are shown - i.e. if a project has no github issues, this activity type should not be displayed in the dropdown as a filtering option.
For that end, we want to have a pipe in Tinybird that, given a project and optionally some repositories, returns those activity types.
This PR creates this pipe. It needs #3488 to be merged first.
Jira ticket