update readme, add mermaid diagrams #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@v4 | |
| - name: Run AI inference | |
| id: inference | |
| uses: actions/ai-inference@v1 | |
| with: | |
| prompt: | | |
| You are project manager for AI. Enhance and plan the execution of the following GitHub issue. make sure you explained well what we expect, and acceptance criteria, provide links that might help with more effecient execution | |
| 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 }} |