ci: Experimental check for duplicate workflow

This commit is contained in:
Christian Kußowski 2025-05-18 09:38:47 +02:00
parent 2f8547869f
commit d4332d5705
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
2 changed files with 31 additions and 3 deletions

30
.github/workflows/check_duplicates.yaml vendored Normal file
View file

@ -0,0 +1,30 @@
name: Check Duplicates
on:
issue:
types: [opened]
jobs:
check_duplicates:
runs-on: ubuntu-latest
steps:
- name: Search for similar issues
run: echo "ISSUES=$(gh issue list --search '${{ github.event.issue.title }}' --json title,body | jq '[.[] | {title, body: (.body[:200])}]')"
- name: Send message to GPT
if: "${{ env.ISSUES != '[]' }}"
run: |
curl -X POST \
https://api.openai.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${{ secrets.OPENAI_KEY }}" \
-d '{
"model": "gpt-3.5-turbo",
"messages": [
{"role": "user", "content": "Please link possible duplications of this issue."},
{"role": "user", "content": "${{ github.event.issue.title }}\n${{ github.event.issue.body }}"},
{"role": "user", "content": "${{ env.ISSUES }}"}
],
"temperature": 0.7
}'
env:
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}

View file

@ -48,9 +48,7 @@ class ErrorReporter {
AdaptiveDialogAction(
onPressed: () => launchUrl(
AppConfig.newIssueUrl.resolveUri(
Uri(
queryParameters: {'template': 'bug_report.yaml'},
),
Uri(queryParameters: {'template': 'bug_report.yaml'}),
),
mode: LaunchMode.externalApplication,
),