From 85f1537c28fbf24aab3efef98c352de63674c16d Mon Sep 17 00:00:00 2001 From: Mestery Date: Wed, 15 Dec 2021 00:09:12 +0100 Subject: [PATCH] build: fix comment-labeled workflow Refs: https://github.com/nodejs/node/pull/40985#issuecomment-994056146 PR-URL: https://github.com/nodejs/node/pull/41176 Reviewed-By: Antoine du Hamel Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Rich Trott --- .github/workflows/comment-labeled.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/comment-labeled.yml b/.github/workflows/comment-labeled.yml index ad9b84122686ab..69314e75121f70 100644 --- a/.github/workflows/comment-labeled.yml +++ b/.github/workflows/comment-labeled.yml @@ -14,7 +14,7 @@ jobs: env: NUMBER: ${{ github.event.issue.number || github.event.pull_request.number }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: gh pr comment "$NUMBER" --repo ${{ github.repository }} --body "This issue/PR was marked as stalled, it will be automatically closed in 30 days. If it should remain open, please leave a comment explaining why it should remain open." + run: gh issue comment "$NUMBER" --repo ${{ github.repository }} --body "This issue/PR was marked as stalled, it will be automatically closed in 30 days. If it should remain open, please leave a comment explaining why it should remain open." fastTrack: if: github.repository == 'nodejs/node' && github.event_name == 'pull_request_target' && github.event.label.name == 'fast-track'