Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/_ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,3 +223,22 @@ jobs:
coverage-threshold: '80'
exclude-patterns: '.github/**'
ai-enabled: 'true'

slack-notification:
name: Slack Notification
Comment thread
Ostico marked this conversation as resolved.
runs-on: ubuntu-24.04
Comment thread
Ostico marked this conversation as resolved.
needs:
- tests
- deploy
- test-guard
if: >-
always() &&
(github.event_name != 'pull_request' || !github.event.pull_request.head.repo.fork)
permissions: {}
steps:
- name: Slack Notification
Comment thread
Ostico marked this conversation as resolved.
Copy link

Copilot AI Apr 30, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo in the Slack title: "Github" should be "GitHub".

Copilot uses AI. Check for mistakes.
uses: rtCamp/action-slack-notify@v2
env:
Comment thread
Ostico marked this conversation as resolved.
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_CHANNEL: travis-ci
SLACK_TITLE: GitHub CI/CD Pipeline Complete for ${{ github.head_ref || github.ref_name }}
Loading