https://github.com/appricos/pushinator-action
Send push notifications from Github Actions via Pushinator
https://github.com/appricos/pushinator-action
github-actions notification-service notifications push-notifications
Last synced: about 2 months ago
JSON representation
Send push notifications from Github Actions via Pushinator
- Host: GitHub
- URL: https://github.com/appricos/pushinator-action
- Owner: appricos
- Created: 2025-01-04T14:14:04.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-01-27T15:41:05.000Z (8 months ago)
- Last Synced: 2025-05-07T14:13:51.287Z (5 months ago)
- Topics: github-actions, notification-service, notifications, push-notifications
- Language: TypeScript
- Homepage: https://pushinator.com
- Size: 146 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pushinator GitHub Action
A GitHub Action to **send a push notification to your devices** via Pushinator API.
## Example Workflow
```yaml
name: Deployon: pull
jobs:
send-notification:
runs-on: ubuntu-lateststeps:
# your deployment steps
- uses: appricos/pushinator-action@v1
with:
apiToken: ${{ secrets.PUSHINATOR_API_TOKEN }}
channelId: ${{ secrets.PUSHINATOR_CHANNEL_ID }}
notification: "🚀 Application deployed!"
```## Steps to Get Started
1. Create a [Pushinator](https://pushinator.com) account
2. Set up a notification channel and save the Channel ID and API token
3. Download the app from the [App Store](https://apps.apple.com/us/app/pushinator/id6477758210) or [Google Play](https://play.google.com/store/apps/details?id=com.apprikos.pushinator) to all devices you want to get notifications on
4. Use the QR code in the dashboard to subscribe your devices to the channel
5. Use the example workflow provided to set up and trigger notifications