From 18a36d61a3cf439fb96c4994e6a3acd0d14d58cb Mon Sep 17 00:00:00 2001 From: Jack Steam Date: Tue, 4 Feb 2025 11:50:15 -0600 Subject: [PATCH] chore: debug status notice workflow --- .github/workflows/status-notice.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/status-notice.yml b/.github/workflows/status-notice.yml index dc4867aa9..acb6a7103 100644 --- a/.github/workflows/status-notice.yml +++ b/.github/workflows/status-notice.yml @@ -20,7 +20,8 @@ jobs: - uses: actions/github-script@v6 with: script: | - const message = `⚠️ **Important Notice:** CRXJS is currently seeking new maintainers. + const tagline = '⚠️ **Important Notice:** CRXJS is currently seeking new maintainers'; + const message = `${tagline}. - New issues and PRs may not receive immediate attention - If no maintenance team is established by March 31, 2025, this repository will be archived on June 1, 2025. @@ -35,8 +36,7 @@ jobs: console.log('Existing comments:', comments.data); const botLogin = 'github-actions[bot]'; return comments.data.some(comment => - comment.user.login === botLogin && - comment.body.includes('Important Notice: CRXJS is currently seeking new maintainers') + comment.user.login === botLogin && comment.body.includes(tagline) ); }