@catladder/cli 3.16.0 → 3.17.0
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/bundles/catenv/index.js +2 -2
- package/dist/bundles/cli/index.js +1 -1
- package/dist/cli/src/apps/cli/commands/project/setup/setupAgents.js +4 -1
- package/dist/cli/src/apps/cli/commands/project/setup/setupAgents.js.map +1 -1
- package/dist/pipeline/src/pipeline/agent/prompts.js +130 -192
- package/dist/pipeline/src/pipeline/agent/prompts.js.map +1 -1
- package/dist/pipeline/src/pipeline/agent/shared.js +1 -1
- package/dist/pipeline/src/pipeline/agent/shared.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/apps/cli/commands/project/setup/setupAgents.ts +4 -2
package/package.json
CHANGED
|
@@ -181,11 +181,13 @@ const setupAgentWebhook = async (
|
|
|
181
181
|
merge_request_title: "{{merge_request.title}}",
|
|
182
182
|
merge_request_source_branch: "{{merge_request.source_branch}}",
|
|
183
183
|
merge_request_time_estimate: "{{merge_request.time_estimate}}",
|
|
184
|
+
// FIXME: may cause issues with gitlab webhooks when there are double quotes in the description
|
|
184
185
|
//merge_request_description: "{{merge_request.description}}",
|
|
185
186
|
merge_request_merge_status: "{{merge_request.merge_status}}",
|
|
186
187
|
merge_request_last_commit_title: "{{merge_request.last_commit.title}}",
|
|
187
|
-
|
|
188
|
-
|
|
188
|
+
// FIXME: may cause issues with gitlab webhooks when there are double quotes in the message
|
|
189
|
+
//merge_request_last_commit_message:
|
|
190
|
+
// "{{merge_request.last_commit.message}}",
|
|
189
191
|
merge_request_last_commit_author_name:
|
|
190
192
|
"{{merge_request.last_commit.author.name}}",
|
|
191
193
|
merge_request_last_commit_author_email:
|