Feat: #全部更新
更新完成返回更新成功的信息与相关细节,并在执行全部更新时同样进行npm更新
#49
This file contains 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: Issues Similarity Analysis | |
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: '### 似乎有相似的问题' | |
comment-body: '${index}. ${similarity} #${number}' | |
show-footer: false | |
show-mentioned: true | |
since-days: 730 |