diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-05-24 22:13:24 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-05-24 23:30:45 +0530 |
commit | 15b2d3db1d40b0437fca79d8874d392aa54b3cdd (patch) | |
tree | 2f75a29113b87d3092cd69de6524bc541706c580 | |
parent | 4823ec9f461512daa1b8ab362893bb86a6320b26 (diff) | |
download | hypervideo-pre-15b2d3db1d40b0437fca79d8874d392aa54b3cdd.tar.lz hypervideo-pre-15b2d3db1d40b0437fca79d8874d392aa54b3cdd.tar.xz hypervideo-pre-15b2d3db1d40b0437fca79d8874d392aa54b3cdd.zip |
[misc] Add automatic duplicate issue detection
-rw-r--r-- | .github/workflows/potential-duplicates.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/potential-duplicates.yml b/.github/workflows/potential-duplicates.yml new file mode 100644 index 000000000..1521ae20c --- /dev/null +++ b/.github/workflows/potential-duplicates.yml @@ -0,0 +1,20 @@ +name: Potential Duplicates +on: + issues: + types: [opened, edited] + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/potential-duplicates@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + label: potential-duplicate + state: all + threshold: 0.7 + comment: | + This issue is potentially a duplicate of one of the following issues: + {{#issues}} + - #{{ number }} ({{ accuracy }}%) + {{/issues}} |