希望作者大大,添加一个typora打开多文件后,鼠标拖拽合并以及拆分标签页功能(类似浏览器页面的拆分,合并),辛苦作者 #233
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: Similarity Analysis On Issue | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| jobs: | |
| similarity-analysis: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: analysis | |
| uses: actions-cool/issues-similarity-analysis@v1 | |
| with: | |
| filter-threshold: 0.5 | |
| comment-title: '### Similar Issues' | |
| comment-body: '${index}. ${similarity} #${number}' | |
| show-footer: false | |
| show-mentioned: true | |
| since-days: 730 |