forked from craftech-io/slack-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 943 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Slack Webhook for GitHub Actions Including Image
description: Send notification to a slack channel about the status of the workflows
author: Blanca Ayala
inputs:
status:
description: 'The result of GitHub Actions job'
default: ${{ job.status }}
slack_webhook_url:
description: 'The Slack Webhook URL'
required: true
slack_channel:
description: 'The channel that receives the message. Override the default incoming Webhook Slack settings'
required: false
slack_username:
description: 'The name that send the message, example: Github. Override the default incoming Webhook Slack settings '
required: false
image_url:
description: 'The image that will be displayed in the message'
required: false
extra_text:
description: 'Extra text that will be displayed in the message'
required: false
runs:
using: node12
main: src/index.js
branding:
color: green
icon: message-square