Skip to content

Send push notifications from Github Actions via Pushinator

Notifications You must be signed in to change notification settings

appricos/pushinator-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pushinator GitHub Action

A GitHub Action to send a push notification to your devices via Pushinator API.

Example Workflow

name: Deploy

on: pull

jobs:
  send-notification:
    runs-on: ubuntu-latest

    steps:

      # 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 account
  2. Set up a notification channel and save the Channel ID and API token
  3. Download the app from the App Store or Google Play 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