-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathaction.yml
60 lines (60 loc) · 1.92 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
48
49
50
51
52
53
54
55
56
57
58
59
60
name: "Crawl Tailwind UI"
author: "Greg Brimble"
description: "Automate the crawling and cataloging of the Tailwind UI components"
inputs:
email:
description: "Your tailwindui.com account email address"
required: true
password:
description: "Your tailwindui.com account password"
required: true
token:
description: "GitHub Token"
required: false
default: ${{ github.token }}
output:
description: "The repository to push the crawler output to (defaults to the current repository)"
required: false
default: ${{ github.repository }}
outputfolder:
description: "The folder to output the crawled components in the output repository"
required: false
default: "./"
commitmessage:
description: "The commit message to use when updating the output repository"
required: false
default: "Update tailwindui.com"
current_branch:
description: "The branch in the current repository where .env can be found"
required: false
default: "master"
branch:
description: "The branch to commit to when updating the output repository"
required: false
default: "master"
force:
description: "Whether or not to force push when updating the output repository"
required: false
default: "false"
actor:
description: "The git actor (defaults to the current user)"
required: false
default: ${{ github.actor }}
repository:
description: "The workspace repository (repository with .env) (defaults to the current repository)"
required: false
default: ${{ github.repository }}
crawler:
description: "The repository of the crawler (defaults to 'kiliman/tailwindui-crawler')"
required: false
default: "kiliman/tailwindui-crawler"
crawlerref:
description: "The ref (branch, tag or SHA) to checkout of the crawler"
required: false
default: "master"
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: "refresh-cw"
color: "blue"