mirror of
https://github.com/seerr-team/seerr.git
synced 2026-06-03 05:41:18 -04:00
84 lines
2.5 KiB
YAML
84 lines
2.5 KiB
YAML
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: Duplicate Issue Detector
|
|
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
|
|
permissions: {}
|
|
|
|
env:
|
|
EMBEDDING_MODEL: ${{ vars.EMBEDDING_MODEL }}
|
|
GROQ_MODEL: ${{ vars.GROQ_MODEL }}
|
|
GROQ_API_KEY: ${{ secrets.GROQ_API_KEY }}
|
|
|
|
jobs:
|
|
detect-duplicate:
|
|
runs-on: ubuntu-24.04
|
|
if: ${{ !github.event.issue.pull_request }}
|
|
permissions:
|
|
issues: write
|
|
actions: read
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Pnpm Setup
|
|
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
with:
|
|
node-version-file: 'package.json'
|
|
|
|
- name: Get pnpm store directory
|
|
shell: bash
|
|
run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
|
|
- name: Setup pnpm cache
|
|
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: ${{ env.STORE_PATH }}
|
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pnpm-store-
|
|
|
|
- name: Install dependencies
|
|
working-directory: bin/duplicate-detector
|
|
env:
|
|
CI: true
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Download issue index
|
|
uses: dawidd6/action-download-artifact@8305c0f1062bb0d184d09ef4493ecb9288447732 # v20
|
|
with:
|
|
name: issue-index
|
|
workflow: rebuild-issue-index.yml
|
|
path: bin/duplicate-detector
|
|
search_artifacts: true
|
|
if_no_artifact_found: warn
|
|
|
|
- name: Build index if missing
|
|
working-directory: bin/duplicate-detector
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
INDEX_PATH: issue_index.json
|
|
run: |
|
|
if [ ! -f issue_index.json ]; then
|
|
echo "No index found — building from scratch..."
|
|
node build-index.mjs
|
|
fi
|
|
|
|
- name: Detect duplicates
|
|
working-directory: bin/duplicate-detector
|
|
continue-on-error: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GITHUB_REPOSITORY: ${{ github.repository }}
|
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
|
INDEX_PATH: issue_index.json
|
|
run: node detect.mjs
|