Test slack notificaiton github workflows #11
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: 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 GitHub Action trigger data to Slack workflow | ||
id: slack | ||
uses: slackapi/slack-github-action@v1.24.0 | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
- name: Send custom JSON data to Slack workflow | ||
id: slack | ||
Check failure on line 38 in .github/workflows/docker-image.yml GitHub Actions / ciInvalid workflow file
Check failure on line 38 in .github/workflows/docker-image.yml GitHub Actions / ciInvalid workflow file
|
||
uses: slackapi/slack-github-action@v1.24.0 | ||
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 }} |