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
| /** | |
| * @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 |
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
| /** | |
| * 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; |
