ci(lint): refactor & add type decl #281
Workflow file for this run
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: File Generator | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "scripts/**/*" | |
env: | |
DENO_DIR: /tmp/deno_cache | |
HAS_USERSTYLES_TOKEN: ${{ secrets.USERSTYLES_TOKEN != '' }} | |
jobs: | |
generate-health-files: | |
name: Generate health files | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
if: env.HAS_USERSTYLES_TOKEN | |
with: | |
token: ${{ secrets.USERSTYLES_TOKEN }} | |
ref: ${{ github.ref }} | |
- uses: actions/checkout@v4 | |
if: env.HAS_USERSTYLES_TOKEN == 'false' | |
with: | |
ref: ${{ github.ref }} | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Cache Deno dependencies | |
uses: actions/cache@v3 | |
with: | |
key: ${{ hashFiles('./deno.lock') }} | |
path: ${{ env.DENO_DIR }} | |
- name: Generate health files | |
run: deno task ci:generate | |
- name: Push changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
if: ${{ github.repository == 'catppuccin/userstyles' && github.ref == 'refs/heads/main' && env.HAS_USERSTYLES_TOKEN }} | |
with: | |
commit_message: "chore: generate health files" | |
commit_author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" | |
branch: ${{ github.ref }} |