We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53d1941 + 33dab6a commit cf7052aCopy full SHA for cf7052a
.github/workflows/pr-checklist.yml
@@ -72,16 +72,15 @@ jobs:
72
73
const hasThumbsUp = reactions.some(reaction => reaction.content === '+1');
74
75
- // Update commit status
76
await github.rest.repos.createCommitStatus({
77
owner: context.repo.owner,
78
repo: context.repo.repo,
79
sha: pr.head.sha,
80
state: hasThumbsUp ? 'success' : 'pending',
81
context: 'PR Checklist',
82
description: hasThumbsUp
83
- ? '✅ Checklist acknowledged'
84
- : '⏳ Please 👍 the checklist to acknowledge',
+ ? 'Checklist acknowledged'
+ : 'Please acknowledge the checklist with thumbs up',
85
target_url: checklistComment.html_url
86
});
87
0 commit comments