Differential D16919 Diff 40733 src/applications/harbormaster/customfield/HarbormasterBuildStepCoreCustomField.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/customfield/HarbormasterBuildStepCoreCustomField.php
| Show All 37 Lines | if ($impl->supportsWaitForMessage()) { | ||||
| "\n\n". | "\n\n". | ||||
| 'If you select **Wait For Message**, the build plan will pause '. | 'If you select **Wait For Message**, the build plan will pause '. | ||||
| 'indefinitely once this step finishes. To resume the build, an '. | 'indefinitely once this step finishes. To resume the build, an '. | ||||
| 'external system must call `harbormaster.sendmessage` with the '. | 'external system must call `harbormaster.sendmessage` with the '. | ||||
| 'build target PHID, and either `"pass"` or `"fail"` to indicate '. | 'build target PHID, and either `"pass"` or `"fail"` to indicate '. | ||||
| 'the result for this step. After the result is recorded, the build '. | 'the result for this step. After the result is recorded, the build '. | ||||
| 'plan will resume.'), | 'plan will resume.'), | ||||
| 'options' => array( | 'options' => array( | ||||
| '' => pht('Continue Build Normally'), | 'continue' => pht('Continue Build Normally'), | ||||
| 'wait' => pht('Wait For Message'), | 'wait' => pht('Wait For Message'), | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| return PhabricatorStandardCustomField::buildStandardFields($this, $specs); | return PhabricatorStandardCustomField::buildStandardFields($this, $specs); | ||||
| } | } | ||||
| Show All 25 Lines | |||||