fix: proper NocoDB API v3 response/request format handling #14
Workflow file for this run
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: 🤖 Issue AI Summary | |
| # Automatically summarize new issues and PRs using AI | |
| # This workflow uses the modular AI summary component from Bauer Group automation templates | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| contents: read | |
| models: read | |
| jobs: | |
| summarize-new-issue: | |
| name: Generate AI Summary | |
| if: github.event_name == 'issues' || github.event_name == 'pull_request_target' | |
| uses: bauer-group/automation-templates/.github/workflows/modules-ai-issue-summary.yml@main | |
| with: | |
| summary-type: "technical" # Options: brief, detailed, technical, user-friendly | |
| add-labels: true # Add suggested labels based on AI analysis | |
| add-priority: true # Add priority labels based on AI analysis | |
| translate: "" # Leave empty or specify language (e.g., 'German', 'Spanish') | |
| model: "gpt-4o" # AI model to use | |
| comment-template: | | |
| ## 🤖 AI Analysis for NocoDB Simple Client | |
| {summary} | |
| ### Impact Assessment | |
| This issue/PR affects the NocoDB Simple Client Python library. | |
| --- | |
| *This summary was automatically generated by AI to help with triage and may not be 100% accurate.* | |
| secrets: inherit |