Merge pull request #500 from trusona/dependabot-gradle-trusona-sdk-or… #765
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI | |
on: | |
pull_request: | |
branches: [ master ] | |
push: | |
branches: [ '*' ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
test: | |
uses: ./.github/workflows/workflow_java-specs.yml | |
success_notification: | |
uses: ./.github/workflows/workflow_slack-notification.yml | |
needs: [ test ] | |
if: ${{ success() }} | |
secrets: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
DISPLAYED_USERNAME: Trusona Server SDK Java CI | |
SLACK_MESSAGE: 'CI run completed successfully! :tada: :tada:' | |
failure_notification: | |
uses: ./.github/workflows/workflow_slack-notification.yml | |
needs: [ test ] | |
if: ${{ failure() }} | |
secrets: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
with: | |
DISPLAYED_USERNAME: Trusona Server SDK Java CI | |
SLACK_MESSAGE: 'CI run failed! Shame! Shame! :sadpanda: :sadpanda:' |