Ver Fonte

fix wrong expression & url

Signed-off-by: sy-b <94835959+sy-b@users.noreply.github.com>
sy-b há 3 anos atrás
pai
commit
630a271e9d
1 ficheiros alterados com 2 adições e 2 exclusões
  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"]}'