Skip to content

Commit ce61e62

Browse files
author
olegs-codefresh
committed
add boilerpalte
1 parent 00583cd commit ce61e62

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

stable/send-slack-message/README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
image: codefresh/plugin-publish-helm-chart
2+
tag: 0.0.1
3+
version: 0.1.0
4+
description: Send message to slack channel
5+
keywords:
6+
- slack
7+
home: https://github.com/codefresh-io/slack-message-sender
8+
sources:
9+
- https://github.com/codefresh-io/slack-message-sender
10+
maintainers: # (optional)
11+
- name: Oleg Sucharevich
12+
13+
icon: https://upload.wikimedia.org/wikipedia/commons/7/76/Slack_Icon.png
14+
envs:
15+
- name: WEBHOOK_URL
16+
type: required
17+
description: Url to the channel
18+
- name: DEBUG
19+
description: print verbose install output

stable/send-slack-message/plugin.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Codefresh Helm Plugin
2+
3+
Use Codefresh Slack plugin to send a message to a channel.
4+
5+
## Usage
6+
7+
8+
```yaml
9+
---
10+
version: '1.0'
11+
12+
steps:
13+
14+
...
15+
16+
publish_to_repo:
17+
image: codefresh/slack-message-sender
18+
19+
...
20+
21+
```
22+
23+
## Environment Variables
24+
25+
- **required** `WEBHOOK_URL` - Url to the channel. Slack official [docs](https://gophers.slack.com/apps/new/A0F7XDUAZ-incoming-webhooks)
26+
- `DEBUG` - print verbose output

0 commit comments

Comments
 (0)