Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add GH action to notify about pending PRs #53541

Merged
merged 13 commits into from
Aug 3, 2023
Prev Previous commit
Next Next commit
use mrkdown instead of markdown
  • Loading branch information
balazsorban44 committed Aug 3, 2023
commit 1a9b59519aaf1c005c6b60972b2c79152c7ad6d1
2 changes: 1 addition & 1 deletion .github/actions/pr-approved-open/index.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/pr-approved-open/src/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function run() {
if (pendingPRs) {
await slackClient.chat.postMessage({
channel: '#coord-next-turbopack',
text: `🤖 Pending PRs for Next.js: There are [${prs.data.items.length} PRs](https://github.com/vercel/next.js/pulls?q=is%3Apr+is%3Aopen+review%3Aapproved) awaiting merge.`,
text: `🤖 Pending PRs for Next.js: There are <https://github.com/vercel/next.js/pulls?q=is%3Apr+is%3Aopen+review%3Aapproved|${prs.data.items.length} PRs> awaiting merge.`,
username: 'GitHub Notifier',
icon_emoji: ':github:',
})
Expand Down
Loading