Skip to content

Mail on Star

Mail on Star #32

name: Mail on Star
on:
watch:
types: [ started ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
# https://github.com/dawidd6/action-send-mail/releases/tag/v3.6.1
jobs:
# This workflow contains a single job called "email"
email:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: ✨ Send email, you star
uses: dawidd6/[email protected]
with:
server_address: smtp.gmail.com
server_port: 465
secure: true
username: [email protected]
password: ${{ secrets.ENFMAILBOT_PASSWORD }}
subject: You got a star ✨
body: ${{ github.actor }} just starred your ${{ github.repository }} repo!!!
# to: ${{ secrets.GMAIL_ADDRESS }}
# from: ${{ secrets.GMAIL_ADDRESS }}
to: [email protected]
from: [email protected]
reply_to: [email protected]