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 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 7 columns. Each column represents a stage in the pipeline:
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
@@ -6,6 +6,7 @@ export declare const CONFIG: {
6
6
  readonly SCORED: "Scored";
7
7
  readonly EXECUTE: "Execute";
8
8
  readonly IN_PROGRESS: "In Progress";
9
+ readonly PR_READY: "PR Ready";
9
10
  readonly TESTING: "Testing";
10
11
  readonly DONE: "Done";
11
12
  readonly FAILED: "Failed";
package/dist/config.js CHANGED
@@ -40,6 +40,7 @@ export const CONFIG = {
40
40
  SCORED: 'Scored',
41
41
  EXECUTE: 'Execute',
42
42
  IN_PROGRESS: 'In Progress',
43
+ PR_READY: 'PR Ready',
43
44
  TESTING: 'Testing',
44
45
  DONE: 'Done',
45
46
  FAILED: 'Failed',
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.TESTING);
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 = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ticket-to-pr",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Drag a Notion ticket, get a pull request. AI-powered dev automation.",
5
5
  "type": "module",
6
6
  "bin": {