Manual Batch Issue Deduplication #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Manual Batch Issue Deduplication | |
| on: | |
| workflow_dispatch: # Only runs when manually triggered | |
| jobs: | |
| batch-deduplicate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Batch Deduplicate Issues | |
| uses: pelikhan/action-genai-issue-dedup@v0 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| label-duplicate: "potential duplicate" | |
| comment-duplicate: true | |
| close-duplicate: false | |
| batch-size: 100 | |
| since: '2019-05-05T00:00:00Z' # Process issues dating back to 2019 | |
| duplicate-comment-template: "This issue appears to be a duplicate of #{duplicate_issue_number}." | |
| # Add other action-specific inputs if needed |