Skip to content

Instantly share code, notes, and snippets.

View jusuchin85's full-sized avatar
🧑‍💻
Subconsciously thinking...

Justin Alex Paramanandan jusuchin85

🧑‍💻
Subconsciously thinking...
View GitHub Profile
@jusuchin85
jusuchin85 / jira-epic-colors.md
Last active February 13, 2024 08:48
Epic Colors in Jira

Place the value listed in Epic Color Value in the Epic Color field.

Epic Color Value Hex Color
ghx-label-1 #8d542e #8d542e
ghx-label-2 #ff8b00 #ff8b00
ghx-label-3 #ffab01 #ffab01
ghx-label-4 #0052cc #0052cc
ghx-label-5 #505f79 #505f79
ghx-label-6 #5fa321 #5fa321
@jusuchin85
jusuchin85 / ValidateTwoDatesWorkflow.groovy
Created December 3, 2015 05:20
A Groovy script to compare the Due Date field against the Resolved Date field. If the Resolved Date is after the Due Date, then the Target Met field would be set to "No". Otherwise, it would be set to "Yes"
/**
 * @author jalex
 * @version 1.0
 *
 * A Groovy script to compare the Due Date field against the Resolved Date field. If the Resolved Date is after the
 * Due Date, then the Target Met field would be set to "No". Otherwise, it would be set to "Yes"
 *
 */
import com.atlassian.jira.ComponentManager
@jusuchin85
jusuchin85 / CloseIssues.groovy
Last active July 16, 2021 07:13
A Groovy script to automatically close issues in Done status after 5 days
/**
* Name: close-issues.groovy
* @author jalex
* @version 1.0
*
* A Groovy script to automatically close issues in Done status after 5 days
*/
import com.atlassian.crowd.embedded.api.User;
import com.atlassian.jira.ComponentManager;