Add a way for apps to know they had been installed via Winget #202
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: Automatic New Issue Deduplication | |
| on: | |
| issues: | |
| types: [opened, reopened] | |
| permissions: | |
| models: read | |
| issues: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.issue.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| deduplicate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run Deduplicate Action | |
| uses: pelikhan/action-genai-issue-dedup@v0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| label_as_duplicate: false |