通过接口创建的文件夹路径,赋权给创建的用户,用户登录后,不会显示这个文件夹路径,显示空白。但是直接给用户赋权其他方式创建的文件夹路径,就能正常显示出来 #6441
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: '### See' | |
comment-body: '${index}. ${similarity} #${number}' | |
show-footer: false | |
show-mentioned: true | |
since-days: 730 |