https://github.com/babbel/ci-fail-reporter
CI fail reporter is a GitHub Action designed to notify Slack when CI has failed on the main branch.
https://github.com/babbel/ci-fail-reporter
actions
Last synced: about 1 year ago
JSON representation
CI fail reporter is a GitHub Action designed to notify Slack when CI has failed on the main branch.
- Host: GitHub
- URL: https://github.com/babbel/ci-fail-reporter
- Owner: babbel
- Created: 2024-06-17T14:43:03.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-20T15:07:42.000Z (almost 2 years ago)
- Last Synced: 2025-01-30T02:42:45.780Z (over 1 year ago)
- Topics: actions
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CI Fail Reporter
Github Action to report default branch CI fails to the slack channel.
## Overview
The **CI Fail Reporter** is a GitHub Action designed to report to Slack when CI fails on the main (or another default) branch.
## Inputs
### `slack_webhook_url`
- **Description**: The Slack webhook URL where notifications will be sent.
- **Required**: Yes
## Usage
In your CI workflow add the following line
```
- name: Report to Slack
uses: babbel/ci-fail-reporter@1.0.0
with:
slack_webhook_url: ${{ secrets.slack_webhook_url }}
```