Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manekinekko/github-action-issues-notifier
https://github.com/manekinekko/github-action-issues-notifier
hacktoberfest
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/manekinekko/github-action-issues-notifier
- Owner: manekinekko
- License: mit
- Created: 2020-10-06T07:34:26.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-08T13:12:14.000Z (about 4 years ago)
- Last Synced: 2024-04-26T17:07:08.343Z (7 months ago)
- Topics: hacktoberfest
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
```