mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-08-29 01:59:34 +02:00
## Summary - skip AI issue triage when the latest issue state is closed and recheck state before publishing - restrict duplicate searches and digest canonical candidates to live open issues - add deterministic, additive `Product-*` labels from changed paths for draft and non-draft PRs - map Window Hopper, Cursor Wrap, and all Mouse Jump project paths to their specific product labels before generic fallbacks - preserve manually applied product labels while managing only intake lifecycle labels and trusted comments - collect the PowerToys version and release channel in one required bug/localization field - add Window Hopper to the bug report area dropdown and preserve parsing of both old and combined version headings This consolidates and supersedes #49961 and #49804. ## Validation - `node --test .github\scripts\pr-intake\tests\pr-intake.test.mjs` - 39 passing - `python -m unittest discover .github\scripts\issue-triage\tests -v` - 55 passing - parsed all modified issue-form and workflow YAML files with PyYAML - verified every current `src/modules/*` root maps to a product label - verified the Window Hopper path maps to `Product-Window Hopper` - `git diff --check` --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: b313a270-e6e8-4c4a-89b2-880c1d79027c Copilot-Session: 498721d4-1098-4298-ac8a-147066fbfea3
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
name: Manual Batch Issue Deduplication
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
issue_numbers:
|
|
description: "JSON array of issue numbers to deduplicate (e.g. [101,102,103])"
|
|
required: true
|
|
since:
|
|
description: "Only compare against issues created after this date (ISO 8601, e.g. 2019-05-05T00:00:00Z)"
|
|
required: false
|
|
default: "2019-05-05T00:00:00Z"
|
|
label_as_duplicate:
|
|
description: "Apply duplicate label if duplicates are found (true/false)"
|
|
required: false
|
|
default: "true"
|
|
|
|
permissions:
|
|
models: read
|
|
issues: write
|
|
|
|
jobs:
|
|
deduplicate:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
issue: ${{ fromJson(github.event.inputs.issue_numbers) }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
|
|
- name: Run GenAI Issue Deduplicator
|
|
uses: pelikhan/action-genai-issue-dedup@bdb3b5d9451c1090ffcdf123d7447a5e7c7a2528 # v0.0.19
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
github_issue: ${{ matrix.issue }}
|
|
label_as_duplicate: ${{ github.event.inputs.label_as_duplicate }}
|
|
state: open
|