From 0172ad71a5236920973f0241e3cf7100ae3190b1 Mon Sep 17 00:00:00 2001 From: Jeff Bishop Date: Wed, 27 May 2026 12:33:01 -0700 Subject: [PATCH] fix: repair first-response workflow script syntax --- .github/workflows/first-response.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/first-response.yml b/.github/workflows/first-response.yml index 7eddfc3..6894611 100644 --- a/.github/workflows/first-response.yml +++ b/.github/workflows/first-response.yml @@ -11,12 +11,12 @@ jobs: first-response: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v8 with: script: | await github.rest.issues.createComment({ owner: context.repo.owner, repo: context.repo.repo, issue_number: context.issue.number, - body: Thanks for opening this request. A maintainer will review it within 24 to 48 hours. + body: 'Thanks for opening this request. A maintainer will review it within 24 to 48 hours.' }); \ No newline at end of file