An open API service indexing awesome lists of open source software.

https://github.com/robiningelbrecht/ntfy-action

Send notifications to ntfy.sh using GitHub Action workflow
https://github.com/robiningelbrecht/ntfy-action

Last synced: 11 months ago
JSON representation

Send notifications to ntfy.sh using GitHub Action workflow

Awesome Lists containing this project

README

          

# ntfy.sh action

Send notifications to ntfy.sh using GitHub Action workflow

## Inputs

### `url`

**Required** The ntfy server URL

### `topic`

**Required** The ntfy topic

### `icon`

**Required** URL to an icon to display in the notification

### `job_status`

**Required** The job status. Should always be `${{ job.status }}`, except if you want to force a status.

## Example usage

```yaml
uses: robiningelbrecht/ntfy-action@v1.0.0
if: always()
with:
url: ${{ secrets.NTFY_URL }}
topic: ${{ secrets.NTFY_TOPIC }}
icon: 'https://github.githubassets.com/images/modules/profile/achievements/starstruck-default.png'
job_status: ${{ job.status }}
```