Skip to content

Commit ac8afab

Browse files
Update pylint.yml
1 parent 1c82283 commit ac8afab

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/pylint.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,22 @@ jobs:
3030
with:
3131
name: TestArtifacts
3232
path: "tests.xml"
33+
- name: Send mail
34+
uses: dawidd6/action-send-mail@v3
35+
with:
36+
server_address: smtp.office365.com
37+
server_port: 587
38+
39+
password: ${{secrets.MAIL_PASSWORD}}
40+
subject: Github Actions job result
41+
42+
43+
# Optional whether this connection use TLS (default is true if server_port is 465)
44+
secure: true
45+
body: Build job of ${{github.repository}} completed successfully!
46+
ignore_cert: true
47+
attachments: "*.xml"
48+
priority: high
3349
- name: Execute Lint
3450
run: |
3551
score=10

0 commit comments

Comments
 (0)