> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# thekevjames/deployment-notifier

Tools for notifying external services about new deployments.
[DEPRECATED] use thekevjames/notifier instead!


## Jobs

### datadog

Creates a datadog event.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `api_key` | env_var_name | DATADOG_API_KEY | Name of the environment variable containing your Datadog API key.
 |
| `tag` | string |  | Tag of event.
 |
| `text` | string |  | Body text of the event.
 |
| `title` | string |  | Title (eg. key) of the event.
 |

### sentry-deployment

Creates a new release deployment in Sentry. Should be run after the release has been created.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `environment` | string | ${CIRCLE_TAG} | The environment for which the release applies.
 |
| `organization` | string | ${CIRCLE_PROJECT_USERNAME} | The name of the project's organization (on Sentry).
 |
| `token` | env_var_name | SENTRY_TOKEN | Name of the environment variable containing your Sentry API token.
 |
| `version` | string | ${CIRCLE_SHA1:0:10} | Newly-released version.
 |

### sentry-release

Creates a new release in Sentry.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `commit` | string | ${CIRCLE_SHA1} | The git commit SHA for the new release.
 |
| `organization` | string | ${CIRCLE_PROJECT_USERNAME} | The name of the project's organization (on Sentry).
 |
| `prev_commit` | string |  | The git commit SHA for the previous release.
 |
| `project` | string | ${CIRCLE_PROJECT_REPONAME} | The name of the project (on Sentry).
 |
| `repository` | string | ${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME} | The repository containing the referenced commits.
 |
| `token` | env_var_name | SENTRY_TOKEN | Name of the environment variable containing your Sentry API token.
 |
| `version` | string | ${CIRCLE_SHA1:0:10} | Newly-released version.
 |

### slack

Uses thekevjames/slack-notifier to send a deployment notification to your workspace.


| Parameter | Type | Default | Description |
|---|---|---|---|
| `changes` | string |  | The (optional) changelog for this release.
 |
| `diff_url` | string | ${CIRCLE_COMPARE_URL} | A link to the changeset for this release.
 |
| `environment` | string | ${CIRCLE_TAG} | The environment being deployed.
 |
| `prev_version` | string | unknown | Previously-released version.
 |
| `project` | string | ${CIRCLE_PROJECT_REPONAME} | The name of the project.
 |
| `user` | string | ${CIRCLE_USERNAME} | User responsible for this release.
 |
| `version` | string | ${CIRCLE_SHA1:0:10} | Newly-released version.
 |

## Executors

### alpine-stable