All this does is add an "alliance" parameter to the NATS json created when a project is created or updated. It's added right below "merge_type"
It works by just checking the ministry NATS/message.ts, line 29:
const allianceLabel = (ministry as string).toLocaleLowerCase() == 'ag' ? "JAG" : "none";
and then on line 89 with the rest of the JSON data:
alliance: allianceLabel, // "JAG" for Justice Attornies Group, else "none"
based on this task: https://app.zenhub.com/workspaces/platform-experience-5bb7c5ab4b5806bc2beb9d15/issues/gh/bcdevops/developer-experience/2926
All this does is add an "alliance" parameter to the NATS json created when a project is created or updated. It's added right below "merge_type"
It works by just checking the ministry NATS/message.ts, line 29:
const allianceLabel = (ministry as string).toLocaleLowerCase() == 'ag' ? "JAG" : "none";
and then on line 89 with the rest of the JSON data:
alliance: allianceLabel, // "JAG" for Justice Attornies Group, else "none"