Norman's Note 諾曼筆記

Norman's Note 諾曼筆記

JIRA 筆記

如果開了一張卡,到後面發現不是自己能控制的、或是不需要做了

  • 可以把內容刪掉,然後 title 放個 [placeholder],下次再用這張,因為要刪掉很麻煩。

Convert sub task to task type

https://community.atlassian.com/t5/Jira-questions/Convert-sub-task-to-task-type/qaq-p/977033

Utils

const toAllYouNeed = (jiraSN) => {
  return `
    ${jiraSN.toLowerCase() /* for branch */ }
    [${jiraSN.toUpperCase() /* for MR */ }]
    https://jira.internal.onedegree.hk/browse/${jiraSN.toUpperCase() /* for URL in MR */ }
  `;
}