Skip to content

Add Kafka dependencies and configuration #3

Add Kafka dependencies and configuration

Add Kafka dependencies and configuration #3

Workflow file for this run

# name: Send Slack Notification
# on:
# workflow_call:
# secrets:
# SLACK_WEBHOOK_URL:
# required: true
# jobs:
# success_notifier:
# if: success()
# runs-on: ubuntu-latest
# steps:
# - name: Send success notification on Slack
# uses: slackapi/slack-github-action@v1.24.0
# with:
# payload: |
# {
# "text": "The Continuous Integration for Comment Service workflow has completed successfully."
# }
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
# failure_notifier:
# if: failure()
# runs-on: ubuntu-latest
# steps:
# - name: Send failure notification on Slack
# uses: slackapi/slack-github-action@v1.24.0
# with:
# payload: |
# {
# "text": "The Continuous Integration for Comment Service workflow has failed."
# }
# env:
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}