We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff0d743 commit d1beddcCopy full SHA for d1beddc
.github/workflows/build-and-deploy.yml
@@ -29,3 +29,16 @@ jobs:
29
should-publish-plugins: ${{ needs.deploy-artifacts.outputs.artifacts-deployed }}
30
project-version: ${{ needs.deploy-artifacts.outputs.project-version }}
31
secrets: inherit
32
+ send-notification:
33
+ name: Send Notification
34
+ needs: [ publish-plugins ]
35
+ runs-on: ubuntu-latest
36
+ steps:
37
+ - name: Send Notification
38
+ uses: spring-io/spring-security-release-tools/.github/actions/send-notification@v1
39
+ if: always()
40
+ with:
41
+ webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
42
+ status: ${{ job.status }}
43
+ build-scan-url: ${{ steps.build-and-publish.outputs.build-scan-url }}
44
+ run-name: ${{ format('{0} | Linux | Java 17', github.ref_name) }}
0 commit comments