feat: standardize status change activity logging#741
Open
anonymoususer72041 wants to merge 6 commits intoopencats:masterfrom
Open
feat: standardize status change activity logging#741anonymoususer72041 wants to merge 6 commits intoopencats:masterfrom
anonymoususer72041 wants to merge 6 commits intoopencats:masterfrom
Conversation
c361f5e to
a9d8512
Compare
a9d8512 to
0f50d5e
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.
Summary
This PR standardizes pipeline status changes by separating the dedicated
changeStatusflow from the generic activity flow and by using the status change activity types introduced in #737.Instead of relying on a manually editable activity note during a status change, the resulting activity entry is now derived from the selected status change type. This makes status change logging more consistent and reduces manual variation in these entries.
To support this behavior, the previous combined
addActivityChangeStatusflow is split into dedicatedaddActivityandchangeStatusactions and templates. The related candidate and job order pipeline UI, permissions and tests are updated accordingly.Motivation
The main goal of this change is to make status changes more standardized and less dependent on manual note editing.
Previously, changing a status was tied to a flow where the activity note could be freely adjusted, which made status change logging less consistent. By moving status changes into a dedicated flow and using the status change types added in #737, the system can create more predictable and uniform activity entries for these actions.
Splitting the modal is therefore not the primary objective by itself, but a necessary step to support a more guided and standardized status change workflow.