Skip to content

Commit

Permalink
chore(github-workflow): move issues, prs, features to #next-info chan…
Browse files Browse the repository at this point in the history
…nel (#65991)

## Why?

Moving these cron updates to a different channel to create less noise.
  • Loading branch information
samcx committed May 20, 2024
1 parent 60ad8af commit 325a490
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/next-repo-info/dist/issues/index.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .github/actions/next-repo-info/dist/prs/index.mjs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ async function run() {

await slackClient.chat.postMessage({
blocks: generateBlocks(items),
channel: '#team-next-js',
channel: '#next-info',
icon_emoji: ':github:',
username: 'GitHub Notifier',
})
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/next-repo-info/src/popular-issues.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ async function run() {

await slackClient.chat.postMessage({
blocks: generateBlocks(data.items),
channel: '#team-next-js',
channel: '#next-info',
icon_emoji: ':github:',
username: 'GitHub Notifier',
})
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/next-repo-info/src/popular-prs.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ async function run() {
if (data.items.length > 0) {
await slackClient.chat.postMessage({
blocks: generateBlocks(data.items),
channel: '#team-next-js',
channel: '#next-info',
icon_emoji: ':github:',
username: 'GitHub Notifier',
})
Expand Down

0 comments on commit 325a490

Please sign in to comment.