[Feature]: Skill Importer bundle — ingest any SKILL.md into Spec Kit (Extensify workflow + bundle) #1113
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Catalog: Notify submission" | |
| on: | |
| issues: | |
| types: [opened, labeled] | |
| jobs: | |
| notify: | |
| if: > | |
| (github.event.action == 'opened' && ( | |
| contains(github.event.issue.labels.*.name, 'extension-submission') || | |
| contains(github.event.issue.labels.*.name, 'preset-submission') || | |
| contains(github.event.issue.labels.*.name, 'bundle-submission') | |
| )) || | |
| (github.event.action == 'labeled' && ( | |
| github.event.label.name == 'extension-submission' || | |
| github.event.label.name == 'preset-submission' || | |
| github.event.label.name == 'bundle-submission' | |
| )) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9 | |
| with: | |
| script: | | |
| const marker = '<!-- catalog-assign-bot -->'; | |
| // Post team notification if not already posted | |
| const comments = await github.paginate( | |
| github.rest.issues.listComments, | |
| { | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| } | |
| ); | |
| if (!comments.some(c => c.body && c.body.includes(marker))) { | |
| await github.rest.issues.createComment({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| body: marker + '\ncc @github/spec-kit-maintainers — new catalog submission for review.', | |
| }); | |
| } |