forked from theboi/github-update-readme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
47 lines (45 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
47
name: 'github-contentful-readme'
description: 'Update your profile readme from the Contentful headless CMS'
inputs:
contentfulAccessToken:
description: 'Contentful content access token'
required: true
default: ''
contentfulSpaceId:
description: 'Contentful space ID (not the name)'
required: true
default: ''
headerKey:
description: 'The name of the Key-Value pair in Contentful with the header text'
required: true
default: ''
subheaderKey:
description: 'The name of the Key-Value pair in Contentful with the subheader text'
required: false
default: ''
footerKey:
description: 'The name of the Key-Value pair in Contentful with the footer text'
required: false
default: ''
setOfProjectsCollectionId:
description: 'The ID of the set of projects in Contentful to display'
required: false
default: ''
urlKey:
description: 'The name of the Key-Value pair in Contentful with a URL for a website to link to'
required: false
default: ''
projectsLimit:
description: 'The limit of the number of projects to display'
required: false
default: ''
path:
description: 'Path of your README.md file.'
required: false
default: 'README.md'
branding:
icon: activity
color: green
runs:
using: 'node12'
main: 'dist/index.js'