Skip to content

Commit 8b4bdf8

Browse files
ouiliameclaude
andcommitted
docs: regenerate after staging merge (CodePipeline); suppress sim trigger from catalog
The native Sim workspace-event trigger is documented at triggers/sim — the block writer no longer emits an integrations page for it (skip + canonical-set exclusion). CodePipeline (#4945) lands in the catalog in the Actions format. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 3dc105c commit 8b4bdf8

3 files changed

Lines changed: 6 additions & 17 deletions

File tree

apps/docs/content/docs/en/integrations/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"cloudflare",
3333
"cloudformation",
3434
"cloudwatch",
35+
"codepipeline",
3536
"confluence",
3637
"crowdstrike",
3738
"cursor",
@@ -178,7 +179,6 @@
178179
"sftp",
179180
"sharepoint",
180181
"shopify",
181-
"sim_workspace_event",
182182
"similarweb",
183183
"sixtyfour",
184184
"slack",

apps/docs/content/docs/en/integrations/sim_workspace_event.mdx

Lines changed: 0 additions & 15 deletions
This file was deleted.

scripts/generate-docs.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2622,6 +2622,7 @@ async function generateBlockDoc(blockPath: string) {
26222622
if (
26232623
(blockConfig.category === 'blocks' &&
26242624
!NATIVE_RESOURCE_BLOCK_TYPES.has(stripVersionSuffix(blockConfig.type))) ||
2625+
blockConfig.type === 'sim_workspace_event' ||
26252626
blockConfig.type === 'evaluator' ||
26262627
blockConfig.type === 'number' ||
26272628
blockConfig.type === 'webhook' ||
@@ -2879,7 +2880,10 @@ async function getCanonicalToolDocNames(): Promise<Set<string>> {
28792880
// blocks (category 'triggers') whose pages the trigger pass writes.
28802881
const stripped = config.type ? stripVersionSuffix(config.type) : ''
28812882
const isDocumentedResource = NATIVE_RESOURCE_BLOCK_TYPES.has(stripped)
2882-
const isTriggerService = config.category === 'triggers' && !config.hideFromToolbar
2883+
const isTriggerService =
2884+
config.category === 'triggers' &&
2885+
!config.hideFromToolbar &&
2886+
stripped !== 'sim_workspace_event'
28832887
if (!isIntegrationBlock(config) && !isDocumentedResource && !isTriggerService) continue
28842888
validToolDocs.add(stripped)
28852889
}

0 commit comments

Comments
 (0)