Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 2 months 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 (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-20T15:07:42.000Z (7 months ago)
- Last Synced: 2024-06-22T04:51:57.040Z (7 months ago)
- Topics: actions
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- 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/[email protected]
with:
slack_webhook_url: ${{ secrets.slack_webhook_url }}
```