Skip to content

Installation for OpenCode failing to call gsd-tools.cjs (even while convertClaudeToOpencodeFrontmatter already existing) #159

Installation for OpenCode failing to call gsd-tools.cjs (even while convertClaudeToOpencodeFrontmatter already existing)

Installation for OpenCode failing to call gsd-tools.cjs (even while convertClaudeToOpencodeFrontmatter already existing) #159

name: Auto-label new issues
on:
issues:
types: [opened]
jobs:
add-triage-label:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v7
with:
script: |
await github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ["needs-triage"]
})