Files
slack-github-action/action.yml
T
2021-05-13 16:47:57 -07:00

18 lines
755 B
YAML

name: 'Slack Push'
description: 'Publish a message in a channel or send the github payload to workflow builder'
inputs:
channel-id: # channel id to post message when using bot token
description: 'Slack channel ID where message will be posted. Needed if using bot token'
required: false
slack-message: # message to post when using bot token
description: 'Message to post into Slack. Needed if using bot token'
required: false
payload: # JSON payload to send to Slack via webhook
description: 'JSON payload to send to Slack if webhook route. If not supplied, json from GitHub event will be sent instead'
required: false
outputs:
time: # id of output
description: 'The time'
runs:
using: 'node12'
main: 'dist/index.js'