Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions __checks__/alertChannels.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { SlackAlertChannel } from 'checkly/constructs'
import { SlackAppAlertChannel } from 'checkly/constructs'

const sendDefaults = {
sendFailure: true,
sendRecovery: true,
sendDegraded: false,
}

export const slackChannelOps = new SlackAlertChannel('slack-channel-ops', {
url: new URL(process.env.SLACK_OPS_WEBHOOK_URL!),
channel: '#ops',
export const slackChannelOps = new SlackAppAlertChannel('slack-app-channel-ops', {
slackChannels: ['#ops'],
...sendDefaults,
})
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"checkly": "^8.0.0",
"checkly": "8.2.0",
"mint": "4.2.259",
"typescript": "^5.0.0"
},
Expand Down
Loading