Skip to content

Commit b0fdbd8

Browse files
ShawkyZPeterSchafer
authored andcommitted
chore: update mcp-dxt repo-name and workflows
1 parent 1bcaafc commit b0fdbd8

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1165,8 +1165,8 @@ workflows:
11651165
- main
11661166
- '/release.*/'
11671167

1168-
- trigger-building-dxt:
1169-
name: Trigger building mcp-dxt (stable)
1168+
- trigger-build-agentic-integration:
1169+
name: Trigger building agentic-integration (stable)
11701170
context:
11711171
- team-hammerhead-common-deploy-tokens
11721172
- devex_cli_docker_hub
@@ -1744,13 +1744,13 @@ jobs:
17441744
command: ./release-scripts/upload-artifacts.sh trigger-snyk-images
17451745
- failed-release-notification
17461746

1747-
trigger-building-dxt:
1747+
trigger-build-agentic-integration:
17481748
executor: docker-amd64
17491749
steps:
17501750
- prepare-workspace
17511751
- run:
1752-
name: Trigger build-and-release workflow at mcp-dxt
1753-
command: ./release-scripts/upload-artifacts.sh trigger_build_dxt
1752+
name: Trigger build-and-release workflow at agentic-integration-wrappers
1753+
command: ./release-scripts/upload-artifacts.sh trigger_build_agentic_integration
17541754
- failed-release-notification
17551755

17561756
noop:

release-scripts/upload-artifacts.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -145,25 +145,25 @@ trigger_build_snyk_images() {
145145
fi
146146
}
147147

148-
trigger_build_dxt() {
149-
echo "Triggering build-and-release workflow at mcp-dxt..."
148+
trigger_build_agentic_integration() {
149+
echo "Triggering build-and-release workflow at agentic-integration-wrappers..."
150150
echo "Version: $VERSION_TAG"
151151
echo "Release Channel: $RELEASE_CHANNEL"
152-
response_file=$TMPDIR/trigger_build_dxt.txt
152+
response_file=$TMPDIR/trigger_build_agentic_integration.txt
153153
RESPONSE=$(curl -L \
154154
-X POST \
155155
-H "Accept: application/vnd.github+json" \
156156
-H "Authorization: Bearer $HAMMERHEAD_GITHUB_PAT" \
157157
-H "X-GitHub-Api-Version: 2022-11-28" \
158-
https://api.github.com/repos/snyk/mcp-dxt/dispatches \
158+
https://api.github.com/repos/snyk/agentic-integration-wrappers/dispatches \
159159
-d "{\"event_type\":\"cli_release\", \"client_payload\": {\"cli_version\": \"$VERSION_TAG\"}}" \
160160
-w "%{http_code}" \
161161
-s \
162162
-o "$response_file")
163163
if [ "$RESPONSE" -eq 204 ]; then
164-
echo "Successfully triggered build-and-release workflow at mcp-dxt."
164+
echo "Successfully triggered build-and-release workflow at agentic-integration-wrappers."
165165
else
166-
echo "Failed to trigger build-and-release workflow at mcp-dxt."
166+
echo "Failed to trigger build-and-release workflow at agentic-integration-wrappers."
167167
echo "Response status code: $RESPONSE"
168168
echo "Details:"
169169
cat $response_file
@@ -265,9 +265,9 @@ for arg in "${@}"; do
265265
elif [ "${arg}" == "trigger-snyk-images" ]; then
266266
trigger_build_snyk_images
267267

268-
# Trigger building DXT in mcp-dxt repository
269-
elif [ "${arg}" == "trigger_build_dxt" ]; then
270-
trigger_build_dxt
268+
# Trigger building DXT in agentic-integration-wrappers repository
269+
elif [ "${arg}" == "trigger_build_agentic_integration" ]; then
270+
trigger_build_agentic_integration
271271

272272
# Upload files to S3 bucket
273273
else

0 commit comments

Comments
 (0)