Skip to content

Commit

Permalink
New CICD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvain-morin committed Feb 28, 2024
1 parent ce36048 commit ab1ea12
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/CICD-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,15 @@ on:
jobs:
build-and-test:
uses: ./.github/workflows/CI-build-test.yml

notify-slack:
name: Notify Slack
needs: build-and-test
if: ${{ success() || failure() }}
runs-on: ubuntu-20.04
steps:
- uses: iRoachie/[email protected]
if: env.SLACK_WEBHOOK_URL != null
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_BUILDS_WEBHOOK_URL }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ab1ea12

Please sign in to comment.