mail-on-star/.github/workflows/blank.yml
2020-03-21 08:50:32 -05:00

26 lines
757 B
YAML

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
jobs:
# This workflow contains a single job called "build"
build:
# 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
uses: dawidd6/action-send-mail@v1.3.0
with:
server_address: smtp.gmail.com
server_port: 465
username: quadmx08
password: ${{ secrets.GMAIL_PASS }}
subject: Your a star ✨
body: Someone just starred your mail-on-star repo
to: quadmx08@gmail.com
from: quadmx08@gmail.com