fix(ci): remove duplicate env key in scan_duplicate_issues workflow

The greptile suggestion in #22034 was applied without removing the
original env block, leaving a duplicate env key that makes the YAML
invalid. GitHub fails to parse the workflow on every push to main,
creating failed run entries ("No jobs were run").
This commit is contained in:
Chesars
2026-02-28 13:27:59 -03:00
parent 7f5c8653f0
commit 10a91c5199
@@ -31,8 +31,6 @@ jobs:
python-version: "3.11"
- name: Scan for duplicate issues
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
INPUT_THRESHOLD: ${{ inputs.threshold }}