[Bug]: Asking for permission message stays after going to phone settings #14
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: Detect duplicate issues | |
| on: | |
| issues: | |
| types: [opened, reopened] | |
| permissions: | |
| models: read | |
| issues: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.issue.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| continuous-triage-dedup: | |
| if: ${{ github.event.issue.user.type != 'Bot' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: pelikhan/action-genai-issue-dedup@v0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| # Optional tuning: | |
| # labels: "auto" # compare within matching labels, or "bug,api" |