Skip to content

Merge branch 'master' into dependabot-npm_and_yarn-storybook-cli-7.4.5 #9

Merge branch 'master' into dependabot-npm_and_yarn-storybook-cli-7.4.5

Merge branch 'master' into dependabot-npm_and_yarn-storybook-cli-7.4.5 #9

Workflow file for this run

name: CI
on: [ push ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
id-token: write
contents: read
packages: read
jobs:
test:
uses: ./.github/workflows/workflow_test.yml
analysis:
uses: ./.github/workflows/workflow_static-analysis.yml
success_notification:
uses: ./.github/workflows/workflow_slack-notification.yml
needs: [ test, analysis ]
if: ${{ success() }}
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
DISPLAYED_USERNAME: Auth Cloud TouchPoint SDK CI
MESSAGE: 'CI run completed successfully! :tada: :tada:'
COLOR: good
failure_notification:
uses: ./.github/workflows/workflow_slack-notification.yml
needs: [ test, analysis ]
if: ${{ failure() }}
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
DISPLAYED_USERNAME: Auth Cloud TouchPoint SDK CI
MESSAGE: 'CI run failed! Shame! Shame! :sadpanda: :sadpanda:'
COLOR: danger