-
Notifications
You must be signed in to change notification settings - Fork 0
Surface active Oddworks finish lanes #183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1063,7 +1063,11 @@ def _attention_state_for( | |
| if operating_path == "experiment" or lifecycle_state == "experimental": | ||
| return "experiment" | ||
| if activity_status == "stale": | ||
| return "parked" | ||
| # A declared finish path is itself an unresolved operator decision. It can | ||
| # remain valid while the default branch is stale (for example, when work is | ||
| # on a release branch or waiting at a human/publication gate), so do not | ||
| # silently collapse it back into the parked pool. | ||
| return "decision-needed" if operating_path == "finish" else "parked" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This changes the published derivation of Useful? React with 👍 / 👎. |
||
| if ( | ||
| path_override == "investigate" | ||
| or not operating_path | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These new finish-lane fields are only under the
Phantom Frequenciescatalog key, but catalog matching uses exact path/full-name/repo-name keys plus explicitaliases; the project is referenced elsewhere asPhantomFrequencies(docs/ci-coverage-initiative.md:46,config/notion-project-map.json:149) and no catalog alias is added here. When the checkout or repo name is the no-space spelling, this activation falls through to defaults, so that Oddworks lane will not surface asfinish/commercial.Useful? React with 👍 / 👎.