Conversation
There was a problem hiding this comment.
Claude Code Review
This repository is configured for manual code reviews. Comment @claude review for a one-time review, or @claude review always to subscribe this PR to a review on every future push.
Tip: disable this comment in your organization's Code Review settings.
CDRussell
force-pushed
the
feature/craig/ensure_hotfixed_tasks_don't_reappear_in_release_board
branch
from
September 15, 2026 08:57
92f1444 to
81e9458
Compare
Collaborator
|
@claude review |
CrisBarreiro
approved these changes
Sep 23, 2026
This branch has not been deployed
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.
Task/Issue URL: https://app.asana.com/1/137249556945/project/608920331025315/task/1218465484864245?focus=true
Tech Design URL (if applicable):
API Proposals URL(s) (if applicable):
Description
Hotfixed Asana tasks were reappearing on the Android Release Board. The nightly "Contained in LGC" job only excluded already-shipped tasks when the hotfix branch hadn't yet merged back to develop; once merged, the cherry-picked commit's different SHA made it look like new work and it got re-added to the Release Board erroneously.
i.e., our two automations (one to remove from release board and the other to add to release board) were fighting each other
This change matches on Asana task ID instead of commit SHA.
Steps to test this PR
Setup
Unit tests should pass
Expect to see:
66 passedConfirm the fix excludes shipped tasks which were in a hotfix
This is a pure git-history check; it doesn't read Asana, so the result is the same whether or not the board has been cleaned up yet. Checks that none of the 3 tasks that shipped in hotfixes 5.295.1/5.295.2 show up as "new".
Expect to see:
PASS: none of the 3 shipped tasks present.[Optional] Confirm the existing bug
It will spit out the 3 Asana tasks that were included in previous hotfixes (and were re-added to the relase board)
Tear-down
And remove anything added from testing the above (it leaves some residual python artefacts on my machine)
Stack created with GitHub Stacks CLI • Give Feedback 💬
Note
Low Risk
Changes only release helper scripts and tests; incorrect filtering could mis-tag release board tasks but does not affect app runtime or user data.
Overview
Fixes hotfixed Asana tasks showing up again on the Android Release Board after the hotfix is cherry-picked back to develop.
collect-lgc-asana-tasks.pyno longer usesis_ancestorand a one-offprior_tag..start_tagcommit scan (only when the start tag wasn’t an ancestor of the end commit). It always drops task IDs returned by newcollect_shipped_task_idsinasana_release_utils.py, which walks public release tag ranges from the tag beforestart_tagthrough later tags (including hotfix tags like5.295.1) and collects Asana IDs from commit messages.Exclusion is by task ID, not commit SHA, so the same fix merged to develop under a new hash still counts as already shipped once it appeared in a release tag.
Tests add coverage for
collect_shipped_task_idsand update the LGC collector integration tests for the new filtering behavior (including the hotfix merge-back regression).Reviewed by Cursor Bugbot for commit 92f1444. Configure here.