From 55decee2427dc438213688db46d507b5f1caa981 Mon Sep 17 00:00:00 2001 From: Lucas Bajolet Date: Mon, 24 Jul 2023 14:01:28 -0400 Subject: [PATCH] .github: fix issues-opened.yml workflow This commit fixes a bug with the first script, as the object passed to the REST API is not closed properly. --- .github/workflows/issues-opened.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/issues-opened.yml b/.github/workflows/issues-opened.yml index c899e9993..565b89af0 100644 --- a/.github/workflows/issues-opened.yml +++ b/.github/workflows/issues-opened.yml @@ -43,6 +43,8 @@ jobs: If no activity is taken on this question within 30 days it will be automatically closed. If you find the forum to be more helpful or if you've found the answer to your question elsewhere please feel free to post a response and close the issue.` + }) + - uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 with: script: | @@ -51,5 +53,5 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, labels: ['needs-reply'] - }) + })