build: Notify after build (#18)

This commit is contained in:
Kroese 2024-02-09 15:04:18 +01:00 committed by GitHub
parent 7631875f40
commit dbcaee2284
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -92,3 +92,15 @@ jobs:
uses: action-pack/bump@v2
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
-
name: Send mail
uses: action-pack/send-mail@v1
with:
to: ${{secrets.MAILTO}}
from: Github Actions <${{secrets.MAILTO}}>
connection_url: ${{secrets.MAIL_CONNECTION}}
subject: Build of ${{ github.event.repository.name }} v${{ steps.meta.outputs.version }} completed
body: |
The build job of ${{ github.event.repository.name }} v${{ steps.meta.outputs.version }} was completed successfully!
See https://github.com/${{ github.repository }}/actions for more information.