Skip to content

Commit

Permalink
Add codecov badges to READMEs.
Browse files Browse the repository at this point in the history
  • Loading branch information
filmaj committed May 15, 2024
1 parent 2c0d6e2 commit 4d45007
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/cli-hooks/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Slack CLI Hooks

[![codecov](https://codecov.io/gh/slackapi/node-slack-sdk/graph/badge.svg?token=OcQREPvC7r&flag=cli-hooks)](https://codecov.io/gh/slackapi/node-slack-sdk)

The `@slack/cli-hooks` package contains scripts that implement the contract
between the [Slack CLI][cli] and [Bolt for JavaScript][bolt].

Expand Down
2 changes: 2 additions & 0 deletions packages/logger/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Slack Logger

[![codecov](https://codecov.io/gh/slackapi/node-slack-sdk/graph/badge.svg?token=OcQREPvC7r&flag=logger)](https://codecov.io/gh/slackapi/node-slack-sdk)

The `@slack/logger` package is intended to be used as a simple logging interface that supports verbosity levels.

## Requirements
Expand Down
2 changes: 2 additions & 0 deletions packages/oauth/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Slack OAuth

[![codecov](https://codecov.io/gh/slackapi/node-slack-sdk/graph/badge.svg?token=OcQREPvC7r&flag=oauth)](https://codecov.io/gh/slackapi/node-slack-sdk)

The `@slack/oauth` package makes it simple to setup the OAuth flow for Slack apps. It supports [V2 OAuth](https://api.slack.com/authentication/oauth-v2) for Slack Apps as well as [V1 OAuth](https://api.slack.com/docs/oauth) for [Classic Slack apps](https://api.slack.com/authentication/quickstart). Slack apps that are installed in multiple workspaces, like in the App Directory or in an Enterprise Grid, will need to implement OAuth and store information about each of those installations (such as access tokens).

The package handles URL generation, state verification, and authorization code exchange for access tokens. It also provides an interface for easily plugging in your own database for saving and retrieving installation data.
Expand Down
2 changes: 2 additions & 0 deletions packages/socket-mode/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Slack Socket Mode

[![codecov](https://codecov.io/gh/slackapi/node-slack-sdk/graph/badge.svg?token=OcQREPvC7r&flag=socket-mode)](https://codecov.io/gh/slackapi/node-slack-sdk)

This package is designed to support [**Socket Mode**][socket-mode], which allows your app to receive events from Slack over a WebSocket connection.

## Requirements
Expand Down
2 changes: 2 additions & 0 deletions packages/web-api/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Slack Web API

[![codecov](https://codecov.io/gh/slackapi/node-slack-sdk/graph/badge.svg?token=OcQREPvC7r&flag=web-api)](https://codecov.io/gh/slackapi/node-slack-sdk)

The `@slack/web-api` package contains a simple, convenient, and configurable HTTP client for making requests to Slack's
[Web API](https://api.slack.com/web). Use it in your app to call any of the over 130
[methods](https://api.slack.com/methods), and let it handle formatting, queuing, retrying, pagination, and more.
Expand Down
2 changes: 2 additions & 0 deletions packages/webhook/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Slack Incoming Webhooks

[![codecov](https://codecov.io/gh/slackapi/node-slack-sdk/graph/badge.svg?token=OcQREPvC7r&flag=webhook)](https://codecov.io/gh/slackapi/node-slack-sdk)

The `@slack/webhook` package contains a helper for making requests to Slack's [Incoming
Webhooks](https://api.slack.com/messaging/webhooks). Use it in your app to send a notification to a channel.

Expand Down

0 comments on commit 4d45007

Please sign in to comment.