Skip to content

Commit

Permalink
ci(build_on_pull_request): Add send mail on build start (for testing)
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Sep 3, 2023
1 parent a1da47e commit 0dce430
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build_on_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Send mail
uses: dawidd6/action-send-mail@v3
with:
# * smtp://user:password@server:port
# * smtp+starttls://user:password@server:port
connection_url: '${{secrets.MAIL_CONNECTION_URL}}'
subject: '[github-action-done] sikalabs/slu - Build started'
to: [email protected]
from: github-action-done <[email protected]>
body: Build job of ${{github.repository}} has been started!
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- name: Run GoReleaser
Expand Down

0 comments on commit 0dce430

Please sign in to comment.