Skip to content

Commit 5f14609

Browse files
committed
feat: add GitHub Actions workflow for hybrid routing
Enable automatic issue triage and routing using the simili-bot. Uses the shared workflow from simili-shared-config with hybrid routing that combines repository documentation with historical patterns.
1 parent 60ec0ea commit 5f14609

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/issue-triage.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Issue Triage
2+
3+
on:
4+
issues:
5+
types: [opened, edited, closed, reopened, deleted, transferred]
6+
issue_comment:
7+
types: [created]
8+
9+
permissions:
10+
issues: write
11+
contents: read
12+
13+
jobs:
14+
call-simili-workflow:
15+
uses: similigh/simili-shared-config/.github/workflows/simili.yml@main
16+
with:
17+
config_path: .github/simili.yaml
18+
secrets:
19+
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
20+
QDRANT_URL: ${{ secrets.QDRANT_URL }}
21+
QDRANT_API_KEY: ${{ secrets.QDRANT_API_KEY }}
22+
TRANSFER_TOKEN: ${{ secrets.TRANSFER_TOKEN }}

0 commit comments

Comments
 (0)