ticket-to-pr 1.4.2 → 1.4.3
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/README.md +1 -1
- package/dist/config.d.ts +1 -0
- package/dist/config.js +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ TicketToPR clears that pile. Toss tickets on your Notion board, drag to Review,
|
|
|
56
56
|
|
|
57
57
|
### The Board
|
|
58
58
|
|
|
59
|
-
TicketToPR uses a Notion board with
|
|
59
|
+
TicketToPR uses a Notion board with 9 columns. Each column represents a stage in the pipeline:
|
|
60
60
|
|
|
61
61
|
```
|
|
62
62
|
Backlog No automation. Park ideas here.
|
package/dist/config.d.ts
CHANGED
package/dist/config.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -750,7 +750,7 @@ async function runExecuteAgent(ticket) {
|
|
|
750
750
|
}
|
|
751
751
|
// Update Notion
|
|
752
752
|
await writeExecutionResults(ticket.id, { branch: branchName, cost, prUrl });
|
|
753
|
-
await moveTicketStatus(ticket.id, CONFIG.COLUMNS.
|
|
753
|
+
await moveTicketStatus(ticket.id, CONFIG.COLUMNS.PR_READY);
|
|
754
754
|
const duration = Math.round((Date.now() - startTime) / 1000);
|
|
755
755
|
// Add success audit trail comment
|
|
756
756
|
const comment = [
|