zcong1993-actions-ding/action.yml

24 lines
521 B
YAML
Raw Permalink Normal View History

2019-08-26 15:24:49 +08:00
name: 'DingDing Notify Action'
description: 'Send dingding simple notify message'
author: 'zcong1993'
2019-08-26 15:40:08 +08:00
branding:
icon: 'message-square'
color: 'blue'
2019-08-29 19:57:54 +08:00
inputs:
2019-08-26 15:24:49 +08:00
dingToken:
description: 'DingDing bot token'
required: true
2019-08-29 16:48:20 +08:00
body:
description: 'Post Body to send'
2019-08-26 15:24:49 +08:00
required: true
2020-06-19 17:25:50 +08:00
secret:
description: 'If use sign secret'
required: false
ignoreError:
description: 'If set true, will not fail action when API call failed'
required: false
2019-08-26 15:24:49 +08:00
2019-08-26 14:36:42 +08:00
runs:
using: 'node16'
2020-06-19 15:57:43 +08:00
main: 'dist/index.js'