Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/auto-issue-dedup.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Auto Issue Deduplication

on:
issues:
types: [opened]

jobs:
dedup_issues:
runs-on: ubuntu-latest
permissions:
issues: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Check for duplicate issues
uses: pelikhan/action-genai-issue-dedup@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
openai-api-key: ${{ secrets.OPENAI_API_KEY }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nope

model: 'gpt-4o-mini'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrong

similarity-threshold: '0.8'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nope

23 changes: 23 additions & 0 deletions .github/workflows/auto-issue-labeller.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Auto Issue Labeller

on:
issues:
types: [opened, edited]

jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Auto label issues
uses: pelikhan/action-genai-issue-labeller@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
openai-api-key: ${{ secrets.OPENAI_API_KEY }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not needed

model: 'gpt-4o-mini'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nope

labels: 'bug,feature,documentation,enhancement,question,help wanted,good first issue'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wrong