We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7631875 commit dbcaee2Copy full SHA for dbcaee2
.github/workflows/build.yml
@@ -92,3 +92,15 @@ jobs:
92
uses: action-pack/bump@v2
93
with:
94
token: ${{ secrets.REPO_ACCESS_TOKEN }}
95
+ -
96
+ name: Send mail
97
+ uses: action-pack/send-mail@v1
98
+ with:
99
+ to: ${{secrets.MAILTO}}
100
+ from: Github Actions <${{secrets.MAILTO}}>
101
+ connection_url: ${{secrets.MAIL_CONNECTION}}
102
+ subject: Build of ${{ github.event.repository.name }} v${{ steps.meta.outputs.version }} completed
103
+ body: |
104
+ The build job of ${{ github.event.repository.name }} v${{ steps.meta.outputs.version }} was completed successfully!
105
+
106
+ See https://github.com/${{ github.repository }}/actions for more information.
0 commit comments