-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
executable file
·32 lines (32 loc) · 1016 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
29
30
31
32
name: "chatwork-actions"
description: "This GitHub Action sends a message to Chatwork when an issue, comment or pull request is created or edited."
author: "mechiru"
inputs:
roomId:
required: true
description: "Chatroom ID, where the message was sent"
token:
required: true
description: "Chatwork API token"
mapping:
description: "Mapping between github username and chatwork user(s)"
default: "{}"
mappingFile:
description: "File path mapping github username and chatwork user(s)"
default: ""
context:
required: true
description: "GitHub context"
default: ${{ toJson(github) }}
ignoreBody:
description: "Whether to send the github issue body or issue comments into the body of the chatwork message"
default: false
skipSendingMessage:
description: "Do not send message if github user is not found"
default: false
outputs:
messageId:
description: "Message ID generated by chatwork server"
runs:
using: "node16"
main: "dist/index.js"