Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/pr-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ jobs:
- name: Send notification email
uses: dawidd6/action-send-mail@v16
with:
server_address: "smtp-mail.outlook.com"
server_port: 587
username: "epschedule@hotmail.com"
password: ${{ secrets.MAIL_PASSWORD }}
server_address: "smtp.gmail.com"
server_port: 465
secure: true
username: ${{ secrets.GMAIL_USER }}
password: ${{ secrets.GMAIL_APP_PASSWORD }}
subject: "New PR: ${{ github.event.pull_request.title }}"
to: ajosan@eastsideprep.org,cwest@eastsideprep.org
from: EPSchedule GitHub <epschedule@hotmail.com>
from: 'EPSchedule GitHub <${{ secrets.GMAIL_USER }}>'
body: |
A new pull request has been submitted to EPSchedule.

Expand Down