Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
tailwind-crawler/action.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
60 lines (60 sloc)
1.92 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |