浏览代码

fix wrong expression & url

Signed-off-by: sy-b <94835959+sy-b@users.noreply.github.com>
sy-b 3 年之前
父节点
当前提交
630a271e9d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      .github/workflows/commentCommands.yml

+ 2 - 2
.github/workflows/commentCommands.yml

@@ -23,7 +23,7 @@ jobs:
   add-label-duplicate:
     runs-on: ubuntu-latest
     if: |
-      contains(github.event.comment.body, "/duplicate") == '/add' && (
+      contains(github.event.comment.body, "/duplicate") && (
       github.event.comment.author_association == 'OWNER' ||
       github.event.comment.author_association == 'COLLABORATOR' ||
       github.event.comment.author_association == 'CONTRIBUTOR' )
@@ -34,5 +34,5 @@ jobs:
               -X POST \
               -H "Accept: application/vnd.github+json" \
               -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-              https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/label \
+              https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/labels \
               -d '{"labels":["duplicate"]}'