From 59fabdc366bdfa819b2a611dfe854d21a8bd5eb4 Mon Sep 17 00:00:00 2001 From: Waylon Walker Date: Sat, 21 Mar 2020 08:40:32 -0500 Subject: [PATCH] Create blank.yml --- .github/workflows/blank.yml | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..b1e1ef9 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,34 @@ +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: + # SMTP server address + server_address: smtp.gmail.com + # SMTP server port + server_port: 467 + # Authenticate as this user to SMTP server + username: quadmx08 + # Authenticate with this password to SMTP server + password: ${{ GMAIL_PASS }} + # Subject of mail message + subject: Your a star ✨ + # Body of mail message (might be a filename to read from) + body: Someone just starred your mail-on-star repo + # Recipients mail addresses (separated with comma) + to: mail-on-star@waylonwalker.com + # Full name of mail sender + from: quadmx08@gmail.com