alist的WebDAV服务协议中能否添加alist的hashinfo,使用rclone就可以增加alist的WebDAV的自定义支持了 #5752
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: Issue Duplicate | |
on: | |
issues: | |
types: [labeled] | |
jobs: | |
create-comment: | |
runs-on: ubuntu-latest | |
if: github.event.label.name == 'duplicate' | |
steps: | |
- name: Create comment | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'create-comment' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hello @${{ github.event.issue.user.login }}, your issue is a duplicate and will be closed. | |
你好 @${{ github.event.issue.user.login }},你的issue是重复的,将被关闭。 | |
- name: Close issue | |
uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'close-issue' | |
token: ${{ secrets.GITHUB_TOKEN }} |