Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/manekinekko/github-action-issues-notifier


https://github.com/manekinekko/github-action-issues-notifier

hacktoberfest

Last synced: 5 days ago
JSON representation

Awesome Lists containing this project

README

        

## Issues Notifier

This is a GitHub Action that sends a notification email when an issue was labeled with a particular label.

### Usage

```yml
- name: Notifier
uses: manekinekko/github-action-issues-notifier@preview
id: notifier
with:
smtpHost: ${{ secrets.SMTP_HOST }}
smtpPort: ${{ secrets.SMTP_PORT }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
from: ${{ secrets.EMAIL_FROM }}
to: ${{ secrets.EMAIL_TO }}
bcc: ${{ secrets.EMAIL_BCC }}
labels: "critical,urgent,important"
```