From 0898419bed323d84cb9079e1fa063867ccaad14f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Fri, 31 May 2024 16:18:28 +0200 Subject: [PATCH] Debug output --- .github/workflows/community_metrics.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/community_metrics.yml b/.github/workflows/community_metrics.yml index 28e2f9d9da6..bd56e6974e8 100644 --- a/.github/workflows/community_metrics.yml +++ b/.github/workflows/community_metrics.yml @@ -17,7 +17,7 @@ jobs: $issues = gh issue list --repo '${{ github.repository }}' --label 'community metrics' --state open --json number --jq '.[].number' foreach ($issue in $issues) { - gh issue close $issue --comment 'Closing this issue as newer community metrics are available.' + Write-Output "Closing issue $issue" } env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}