-
Notifications
You must be signed in to change notification settings - Fork 22
/
action.yml
28 lines (28 loc) · 871 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: "Github mention to Slack"
description: "Convert Github mention to Slack mention"
inputs:
configuration-path:
description: "Path to config-yaml-file to convert Github username to Slack member ID."
required: true
default: ".github/mention-to-slack.yml"
slack-webhook-url:
description: "Slack Incomming Webhook URL to notify."
required: true
repo-token:
description: "Github access token to fetch .github/mention-to-slack.yml file."
required: true
bot-name:
description: "Display name for this bot on Slack."
required: false
icon-url:
description: "Display icon url for this bot on Slack."
required: false
run-id:
description: "Used for the link in the error message when an error occurs."
required: false
runs:
using: "node16"
main: "dist/index.js"
branding:
icon: "message-square"
color: "red"