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
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ logs
.vitest
*.md
!package.json
# SKILL.md is served at /SKILL.md by src/routes/agent-discovery.ts and must
# exist in the production image; the *.md exclusion above would otherwise
# silently break `COPY SKILL.md` in the Dockerfile.
!SKILL.md
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches: [master]
pull_request:
branches: [master]
# Allow deploy.yml to depend on this workflow as a reusable workflow
# (`uses: ./.github/workflows/ci.yml`). Without workflow_call, deploy.yml
# fails at parse time with a 0-second failure on every merge.
workflow_call:

permissions:
contents: read
Expand Down
Loading