Aggiunge action triage-issue e workflow di test

This commit is contained in:
2026-05-30 22:41:57 +02:00
parent 2603f780e6
commit 36ce1b55fb
2 changed files with 167 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
name: Triage Issue
on:
issues:
types: [opened]
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./install-opencode
- uses: ./triage-issue
with:
issue-title: ${{ github.event.issue.title }}
issue-body: ${{ github.event.issue.body }}
issue-number: ${{ github.event.issue.number }}
repository: ${{ github.repository }}
api-token: ${{ secrets.GITEA_TOKEN }}
api-key: ${{ secrets.OPencode_API_KEY }}