Skip to content

Commit 7fd193f

Browse files
committed
add email fail step to CI
1 parent 8032120 commit 7fd193f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/openapi.yml

+15
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,18 @@ jobs:
5959
branch: openapi
6060
branch-suffix: timestamp
6161
reviewers: arlyon
62+
- name: email if failed
63+
if: failure()
64+
uses: dawidd6/action-send-mail@v3
65+
with:
66+
server_address: ${{ secrets.MAIL_SERVER }}
67+
server_port: 465
68+
username: ${{ secrets.MAIL_USERNAME }}
69+
password: ${{ secrets.MAIL_PASSWORD }}
70+
subject: Failed to generate latest changes from OpenApi spec
71+
72+
from: Github Actions
73+
body: |
74+
This is an automated email. The workflow that tries to build the latest changes generated from the [Stripe OpenApi spec](https://github.com/stripe/openapi).
75+
76+
Please visit ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} to determine what failed.

0 commit comments

Comments
 (0)