-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
15 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,11 +49,11 @@ jobs: | |
# * smtp+starttls://user:password@server:port | ||
connection_url: 'smtp://[email protected]:[email protected]:465' | ||
# Required mail server address if not connection_url: | ||
server_address: smtp.gmail.com | ||
# Server port, default 25: | ||
server_port: 465 | ||
# server_address: smtp.gmail.com | ||
# # Server port, default 25: | ||
# server_port: 25 | ||
# Optional whether this connection use TLS (default is true if server_port is 465) | ||
secure: true | ||
# secure: true | ||
# # Optional (recommended) mail server username: | ||
# username: ${{secrets.MAIL_USERNAME}} | ||
# # Optional (recommended) mail server password: | ||
|
@@ -63,9 +63,9 @@ jobs: | |
# Required recipients' addresses: | ||
to: [email protected] | ||
# Required sender full name (address can be skipped): | ||
from: Luke Skywalker # <[email protected]> | ||
from: [email protected] # <[email protected]> | ||
# Optional plain body: | ||
body: Build job of ${{github.repository}} completed successfully! | ||
body: hello from github actions | ||
# # Optional HTML body read from file: | ||
# html_body: file://README.html | ||
# Optional carbon copy recipients: | ||
|
@@ -81,12 +81,4 @@ jobs: | |
# # Optional attachments: | ||
# attachments: attachments.zip,git.diff,./dist/static/*.js | ||
# Optional priority: 'high', 'normal' (default) or 'low' | ||
priority: normal | ||
# Optional nodemailerlog: true/false | ||
nodemailerlog: false | ||
# Optional nodemailerdebug: true/false if true lognodem will also be set true | ||
nodemailerdebug: false | ||
# - name: creating pull request | ||
# run: gh pr create -B ${{ github.ref }} -H pandoc --title 'Comparison between nbconvert review of the article and the main article' --body 'Created by Github action' | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
priority: normal |