@gr8ful/spf 0.10.0 → 0.10.1
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.
- package/dist/core/watch.js +4 -1
- package/package.json +1 -1
package/dist/core/watch.js
CHANGED
|
@@ -513,7 +513,10 @@ export async function finishReviews(deps) {
|
|
|
513
513
|
deps.log(`watch: ${issue.id}'s PR #${marker.pr} merged — done`);
|
|
514
514
|
deps.notify({
|
|
515
515
|
kind: "issue_done",
|
|
516
|
-
|
|
516
|
+
// Same reasoning as pr_opened above: a merge landing is a milestone
|
|
517
|
+
// worth a human's attention (it's what closes the loop on the PR
|
|
518
|
+
// that alerted them in the first place), not a routine "info" tick.
|
|
519
|
+
level: "notice",
|
|
517
520
|
title: `issue ${issue.id} done`,
|
|
518
521
|
detail: `PR #${marker.pr} merged.`,
|
|
519
522
|
fields: [["issue", issue.id], ["title", issue.title], ["pr", `#${marker.pr}`]],
|