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/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
51 lines (37 sloc)
1.99 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
# Tailwind UI Crawler Action | |
> Automate the crawling and cataloging of the Tailwind UI components | |
[](https://github.com/GregBrimble/tailwindui-crawler-action/actions?query=workflow%3AExample%2FTest) | |
## Usage | |
As a part of your [GitHub Actions](https://github.com/features/actions) workflow, add a new step as follows: | |
```yml | |
name: Deploy | |
on: | |
push: | |
schedule: | |
- cron: "0 0 * * *" # Every day at midnight | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run crawler | |
uses: gregbrimble/tailwindui-crawler-action@v1.0.0 | |
with: | |
email: ${{ secrets.TAILWINDUI_EMAIL }} | |
password: ${{ secrets.TAILWINDUI_PASSWORD }} | |
``` | |
Read more about the schedule cron syntax in [the official GitHub Actions documentation](https://help.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule). | |
We strongly advise utilizing [GitHub Actions secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets) to securely store your TailwindUI email and password. | |
A full example can be found in [`.github/workflows/default.yml`](https://github.com/GregBrimble/tailwindui-crawler-action/blob/master/.github/workflows/default.yml). | |
## Advanced | |
The following input options are available: | |
| Name | Value | | |
| ---------- | ----------------------------------------- | | |
| `email` | Your tailwindui.com account email address | | |
| `password` | Your tailwindui.com account password | | |
Note: If using a separate private repository for the output, you must include a Personal Access Token in the `token` input, as the `{{ github.token }}` tokens are scoped to only the current repository. | |
## Roadmap | |
[] Specify crawler version | |
[] Create a PR against the output repository |