Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/extension_submission.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Extension Submission
description: Submit your extension to the Spec Kit catalog
title: "[Extension]: Add "
labels: ["extension-submission", "enhancement", "needs-triage"]
labels: ["enhancement", "needs-triage"]
body:
- type: markdown
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/preset_submission.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Preset Submission
description: Submit your preset to the Spec Kit preset catalog
title: "[Preset]: Add "
labels: ["preset-submission", "enhancement", "needs-triage"]
labels: ["enhancement", "needs-triage"]
body:
- type: markdown
attributes:
Expand Down
395 changes: 272 additions & 123 deletions .github/workflows/add-community-extension.lock.yml

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions .github/workflows/add-community-extension.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ emoji: "🧩"
on:
issues:
types: [labeled]
names: [extension-submission]
skip-bots: [github-actions, copilot, dependabot]

tools:
edit:
bash: ["echo", "cat", "head", "tail", "grep", "wc", "sort", "python3", "jq", "date"]
github:
toolsets: [issues, repos]
min-integrity: none
web-fetch:

permissions:
Expand Down Expand Up @@ -49,8 +51,10 @@ or update entries in the community extension catalog.

## Triggering Conditions

This workflow only triggers when the `extension-submission` label is added to an
issue. Before processing, verify that the issue title starts with `[Extension]:`.
This workflow is triggered by any `issues: labeled` event, but a job-level
condition gates the agent run so it only proceeds when the label that was just
added is `extension-submission`. By the time you run, that condition has already
passed. Before processing, verify that the issue title starts with `[Extension]:`.
If it does not, stop without commenting.

## Step 1 — Read and Parse the Issue
Expand Down
Loading