17 lines
371 B
YAML
17 lines
371 B
YAML
name: Opened Issue
|
|
on:
|
|
issues:
|
|
types: [opened]
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: 'Opened Issue'
|
|
uses: umahmood/pushover-actions@main
|
|
env:
|
|
PUSHOVER_TOKEN: ${{ secrets.PUSHOVER_TOKEN }}
|
|
PUSHOVER_USER: ${{ secrets.PUSHOVER_USER }}
|
|
with:
|
|
title: 'Opened Issue'
|