Mail on Star #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Mail on Star' | |
on: | |
workflow_dispatch: | |
watch: | |
types: [started] | |
jobs: | |
stargazer: | |
name: 'stargazers' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 💌 Send email, you star | |
uses: dawidd6/[email protected] | |
with: | |
server_address: smtp.gmail.com | |
server_port: 465 | |
username: ${{ secrets.GMAIL_USER }} | |
password: ${{ secrets.GMAIL_PASS }} | |
subject: Your a star ✨ | |
body: ${{ github.actor }} just starred your mail-on-star repo!!! ${{ github.repository }} | |
to: ${{ secrets.GMAIL_ADDRESS }} | |
from: ${{ secrets.GMAIL_ADDRESS }} |