Skip to content

Commit

Permalink
Update contribution-proposal-not-pursuing.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
andreancardona authored Oct 20, 2023
1 parent 27bcded commit 2e68fdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/contribution-proposal-not-pursuing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
const commentsArray = comments.data.map(comment => comment.body)
if (labelArray.includes('proposal: not pursuing') && !commentsArray.includes('Thanks for not reporting!')) {
if (labelArray.includes('proposal: not pursuing') && !commentsArray.includes("Thank you for submitting your proposal. Unfortunately, it doesn't align with our roadmap or philosophy at this time. We value your contribution and encourage you to keep engaging with the community.")) {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Thanks for not reporting!'
body: "Thank you for submitting your proposal. Unfortunately, it doesn't align with our roadmap or philosophy at this time. We value your contribution and encourage you to keep engaging with the community."
});
} else {
console.log('No comment added because the conditions are not met.');
Expand Down

0 comments on commit 2e68fdc

Please sign in to comment.