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

# pbrisbin/pushover

Send push notifications with Pushover


## Commands

### notify

Send a notification with Pushover


| Parameter | Type | Default | Description |
|---|---|---|---|
| `api-key` | env_var_name | PUSHOVER_API_KEY | Pushover API Key |
| `message` | string |  | Notification message |
| `priority` | integer | 0 | Notification priority (low-to-high: -2 to 1) |
| `title` | string |  | Notification title |
| `user-key` | env_var_name | PUSHOVER_USER_KEY | Pushover User Key |

## Jobs

### notify

Send a notification with Pushover


| Parameter | Type | Default | Description |
|---|---|---|---|
| `api-key` | env_var_name | PUSHOVER_API_KEY | Pushover API Key |
| `executor` | executor | default | Executor to run in |
| `message` | string |  | Notification message |
| `priority` | integer | 0 | Notification priority (low-to-high: -2 to 1) |
| `title` | string |  | Notification title |
| `user-key` | env_var_name | PUSHOVER_USER_KEY | Pushover User Key |

## Executors

### default

Default executor


## Examples

### notify

Send a notification with title and message


```yaml
orbs:
  pushover: pbrisbin/pushover@x.y
version: 2.1
workflows:
  commit:
    jobs:
      - pushover/notify:
          message: Released version ${CIRCLE_SHA1:0:10}
          name: notify
          requires:
            - release
          title: $CIRCLE_PROJECT_REPONAME
```