-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
50 lines (39 loc) · 927 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: "hn-digest"
description: "Creates an email digest of hacker news stories"
author: "Ray Vanderborght"
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: "heart"
color: "red"
inputs:
pg-user:
description: "Postgres User"
required: true
pg-password:
description: "Postgres Password"
required: true
pg-host:
description: "Postgres Host"
required: true
pg-database:
description: "Postgres Database"
required: true
pg-ssl:
description: "Postgres ssl"
required: true
default: "false"
mailgun-domain:
description: "Mailgun domain"
required: true
mailgun-key:
description: "Mailgun api key"
required: true
anthropic-key:
description: "Anthropic api key"
required: false
voyageai-key:
description: "Voyage AI api key"
required: false
runs:
using: node20
main: dist/index.js