mirror of
https://github.com/cluntop/tvbox.git
synced 2026-01-11 18:08:34 +01:00
38 lines
996 B
YAML
38 lines
996 B
YAML
name: Summarize new issues
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
summary:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
models: read
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
with:
|
|
repository: cluntop/tvbox
|
|
token: ${{ secrets.GIT_TOKEN }}
|
|
fetch-depth: 1
|
|
|
|
- name: Run AI inference
|
|
id: inference
|
|
uses: actions/ai-inference@v2
|
|
with:
|
|
prompt: |
|
|
Summarize the following GitHub issue in one paragraph:
|
|
Title: ${{ github.event.issue.title }}
|
|
Body: ${{ github.event.issue.body }}
|
|
|
|
- name: Comment with AI summary
|
|
run: |
|
|
gh issue comment $ISSUE_NUMBER --body '${{ steps.inference.outputs.response }}'
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
|
RESPONSE: ${{ steps.inference.outputs.response }}
|