-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (37 loc) · 1.1 KB
/
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
33
34
35
36
37
name: Project Activity
author: Andy
description: Generates an email summary of project activity, showing issues that have moved, been added or commented.
inputs:
token:
description: "Github Token"
required: true
smtp-server:
description: "SMTP server"
required: true
smtp-server-port:
description: "SMTP server port"
required: true
auth-user:
description: "Sender user email"
required: true
auth-pwd:
description: "Sender user password (for gmail generate and use an app password)"
required: true
email-from:
description: "Sender from name"
required: true
recipient-emails:
description: "Recipents email addresses (comma-separated)"
required: true
project-numbers:
description: "Project Numbers (comma-separated list, or, all)"
required: required
days:
description: "Days back, from run date, of project activity to summarise"
required: true
runs:
using: "node12"
main: "dist/index.js"
branding:
icon: 'activity'
color: 'blue'