If you were logged in you would be able to see more operations.
|
|
|
QuickBuild
Created: 04/Sep/20 09:15 AM
Updated: 18/Feb/21 08:40 AM
|
|
Component/s: |
None
|
Affects Version/s: |
None
|
Fix Version/s: |
None
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
File Attachments:
|
None
|
Image Attachments:
|
|
|
Dear all,
I don't know if this falls in between improvement or New Feature, but I find that it would be great if we could have an option to unpause a schedule on a configuration on a condition, especially "If next build is SUCCESSFUL"
I'm attaching a screenshot to show a bit my "idea"
|
Description
|
Dear all,
I don't know if this falls in between improvement or New Feature, but I find that it would be great if we could have an option to unpause a schedule on a configuration on a condition, especially "If next build is SUCCESSFUL"
I'm attaching a screenshot to show a bit my "idea" |
Show » |
|
groovy:
if (build.isSuccessful()) {
configuration.getSchedule().setPaused(false);
system.configurationManager.save(configuration);
}