Skip to content

Test slack notificaiton github workflows #13

Test slack notificaiton github workflows

Test slack notificaiton github workflows #13

Workflow file for this run

name: ci
on:
push:
branches:
- "main"
- "master"
jobs:
docker:
runs-on: ubuntu-latest
steps:
# - name: Checkout
# uses: actions/checkout@v4
# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
# - name: Login to ghcr
# uses: docker/login-action@v3
# with:
# registry: ghcr.io
# username: ${{github.actor}}
# password: ${{secrets.GH_TOKEN}}
# - name: Build and push
# uses: docker/build-push-action@v5
# with:
# context: .
# platforms: linux/amd64,linux/arm64
# push: true
# tags: ghcr.io/harshsinghvi/golang-postgres-kubernetes:latest
- name: Send custom JSON data to Slack workflow
id: slack
uses: slackapi/[email protected]
with:
# This data can be any valid JSON from a previous step in the GitHub Action
payload: |
{
"text": "🚀 go-todo-api image pushed",
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}