Skip to content

ci: Update GitHub Actions workflow configuration #1

ci: Update GitHub Actions workflow configuration

ci: Update GitHub Actions workflow configuration #1

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [ master ]
paths:
- '**'
pull_request:
branches: [ master ]
paths:
- '**'
permissions:
contents: read
packages: write
jobs:
docker-build:
uses: ./.github/workflows/docker-build.yml
with:
docker_image: search-engine
docker_tag: ${{ github.sha }}
notify:
name: Notify
needs: [docker-build]
if: always()
runs-on: ubuntu-latest
steps:
- name: Notify Slack
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
if: always()