@atolis-hq/wake 0.2.37 → 0.2.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -889,6 +889,8 @@ export function createTickRunner(deps) {
|
|
|
889
889
|
const finishedAt = deps.clock.now().toISOString();
|
|
890
890
|
let prReviewTargetResourceUri = null;
|
|
891
891
|
if (watcherRun) {
|
|
892
|
+
// Artifact correlation is intentionally scoped to any watcher-dispatched
|
|
893
|
+
// run, not to an action literally named "pr-review".
|
|
892
894
|
prReviewTargetResourceUri = await resolvePrReviewTarget({
|
|
893
895
|
projection: candidate,
|
|
894
896
|
runId,
|
|
@@ -1054,6 +1056,8 @@ export function createTickRunner(deps) {
|
|
|
1054
1056
|
: {}),
|
|
1055
1057
|
});
|
|
1056
1058
|
if (watcherRun) {
|
|
1059
|
+
// Watcher-dispatched runs own PR verdict delivery and correlation
|
|
1060
|
+
// registration regardless of the target workflow/action name.
|
|
1057
1061
|
if (prReviewTargetResourceUri !== null &&
|
|
1058
1062
|
(sentinel === 'DONE' || sentinel === 'FAILED')) {
|
|
1059
1063
|
await deliverOutboundEvent({
|
package/dist/src/version.js
CHANGED