Skip to content

Commit f68d79c

Browse files
edited notifications to slack page
1 parent 076ba0b commit f68d79c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_docs/yaml-examples/examples/sending-the-notification-to-slack.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ There are many ways to integrate slack with Codefresh
1616

1717
## Custom webhook to Slack
1818

19-
Use a container image with a [freestyle step]({{site.baseurl}}/docs/codefresh-yaml/steps/freestyle/) such as `tuttum/curl` to send a notification to a Slack channel.
19+
Use a container image with a [freestyle step]({{site.baseurl}}/docs/codefresh-yaml/steps/freestyle/) such as `byrnedo/alpine-curl` to send a notification to a Slack channel.
2020

2121
{:start="1"}
2222
1. Get the {% raw %}```${{SLACK_WEB_URL}}```{% endraw %} and put it in the Environment Variables or use [shared configuration]({{site.baseurl}}/docs/configure-ci-cd-pipeline/shared-configuration/)
@@ -31,7 +31,7 @@ You can find how to integrate with slack here [https://api.slack.com/incoming-we
3131
`slack step`
3232
{% highlight yaml %}
3333
slack_notify:
34-
image: byrnedo/alpine-curl, curlimages/curl, or any other curl image
34+
image: byrnedo/alpine-curl # curlimages/curl, or any other curl image
3535
commands:
3636
- curl -X POST --data-urlencode 'payload={"text":"Test slack integration via yaml"}' {% raw %}${{SLACK_WEB_URL}}{% endraw %}
3737
{% endhighlight %}

0 commit comments

Comments
 (0)