File tree Expand file tree Collapse file tree 4 files changed +49
-0
lines changed Expand file tree Collapse file tree 4 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 5
5
| Plugin | Description | Tags |
6
6
| ------------------------------------ | ------------------- | ------------------- |
7
7
| [ Deploy Helm] ( stable/helm/README.md ) | Deploy a Helm chart | ` kubernetes ` ` helm ` |
8
+ | [ Slack] ( stable/slack/README.md ) | Send message to slack | ` slack ` |
8
9
9
10
## Incubator Plugins
10
11
Original file line number Diff line number Diff line change
1
+ ## Notes
Original file line number Diff line number Diff line change
1
+ image: codefresh/slack-message-sender
2
+ version: 0.1.0
3
+ description: Send message to slack channel
4
+ keywords:
5
+ - slack
6
+ home: https://github.com/codefresh-io/slack-message-sender
7
+ sources:
8
+ - https://github.com/codefresh-io/slack-message-sender
9
+ maintainers: # (optional)
10
+ - name: Oleg Sucharevich
11
+
12
+ icon: https://upload.wikimedia.org/wikipedia/commons/7/76/Slack_Icon.png
13
+ envs:
14
+ - name: WEBHOOK_URL
15
+ type: required
16
+ description: Url to the channel
17
+ - name: SLACK_MESSAGE
18
+ type: required
19
+ description: Message to send
20
+ - name: DEBUG
21
+ description: print verbose install output
Original file line number Diff line number Diff line change
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://api.slack.com/incoming-webhooks)
26
+ - ` DEBUG` - print verbose output
You can’t perform that action at this time.
0 commit comments