Skip to content

Add GChat notification for scheduled release failure #71

Add GChat notification for scheduled release failure

Add GChat notification for scheduled release failure #71

name: Build and Deploy
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
secrets: inherit
test:
name: Test
uses: ./.github/workflows/test.yml
secrets: inherit
deploy-artifacts:
name: Deploy Artifacts
needs: [ build, test ]
uses: ./.github/workflows/deploy-artifacts.yml
with:
should-deploy-artifacts: ${{ needs.build.outputs.should-deploy-artifacts }}
secrets: inherit
publish-plugins:
name: Publish Plugins
needs: [ deploy-artifacts ]
uses: ./.github/workflows/publish-plugins.yml
with:
should-publish-plugins: ${{ needs.deploy-artifacts.outputs.artifacts-deployed }}
project-version: ${{ needs.deploy-artifacts.outputs.project-version }}
secrets: inherit
send-notification:
name: Send Notification
needs: [ deploy-artifacts ]
runs-on: ubuntu-latest
steps:
- name: Send Notification
uses: spring-io/spring-security-release-tools/.github/actions/send-notification@v1
if: ${{ failure() || cancelled() }}
with:
webhook-url: ${{ secrets.GOOGLE_CHAT_WEBHOOK_URL }}
status: ${{ job.status }}
build-scan-url: ${{ steps.build-and-publish.outputs.build-scan-url }}
run-name: ${{ format('{0} | Linux | Java 17', github.ref_name) }}