@haystackeditor/cli 0.7.1 → 0.7.2

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.
@@ -85,21 +85,21 @@ grep '"name":' .haystack.json
85
85
 
86
86
  \`\`\`json
87
87
  {
88
- "name": "Analysis pipeline - golden PR",
89
- "description": "Run analysis on known PR to verify pipeline works",
88
+ "name": "Backend pipeline - golden input",
89
+ "description": "Run pipeline on known input to verify it works",
90
90
  "trigger": "on_change",
91
- "watch_patterns": ["analysis/src/**", "analysis/package.json"],
92
- "service": "haystack-analysis",
91
+ "watch_patterns": ["packages/my-pipeline/src/**"],
92
+ "service": "my-pipeline",
93
93
  "type": "backend",
94
94
  "steps": [
95
95
  {
96
96
  "action": "run",
97
97
  "command": "pnpm start",
98
- "env": { "PR_IDENTIFIER": "owner/repo#123" },
98
+ "env": { "INPUT_ID": "known-good-input-123" },
99
99
  "timeout": 120
100
100
  },
101
101
  { "action": "assert_exit_code", "code": 0 },
102
- { "action": "assert_output_contains", "pattern": "Analysis complete" }
102
+ { "action": "assert_output_contains", "pattern": "Processing complete" }
103
103
  ]
104
104
  }
105
105
  \`\`\`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haystackeditor/cli",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Set up Haystack verification for your project",
5
5
  "type": "module",
6
6
  "bin": {