Skip to content

Commit

Permalink
chore: debug status notice workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksteamdev committed Feb 4, 2025
1 parent 73c4a57 commit 18a36d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/status-notice.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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)
);
}
Expand Down

0 comments on commit 18a36d6

Please sign in to comment.