diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index bb48a864f2..53dffbb2c5 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -6,16 +6,18 @@ on: jobs: format: - name: Format Code + name: Format userstyles runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: token: ${{ secrets.USERSTYLES_TOKEN }} - - uses: actions/setup-node@v3 - - name: Format files + - name: Setup Node.js + uses: actions/setup-node@v3 + + - name: Format userstyles run: npx prettier --write styles/**/*.css - name: Pull changes diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index c58e3ce69e..67babd057a 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -12,8 +12,8 @@ env: jobs: generate-health-files: - runs-on: ubuntu-latest 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. @@ -52,4 +52,3 @@ jobs: commit_message: "chore: generate health files" commit_author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" branch: ${{ github.ref }} -# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 9b22cb7228..47803d9a12 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -11,11 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: github/issue-labeler@v3.1 - with: - repo-token: "${{ secrets.GITHUB_TOKEN }}" - configuration-path: .github/issue-labeler.yml - enable-versioned-regex: 0 - include-title: 1 - sync-labels: 1 -# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json + - name: Add issue labels + uses: github/issue-labeler@v3.1 + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}" + configuration-path: .github/issue-labeler.yml + enable-versioned-regex: 0 + include-title: 1 + sync-labels: 1 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 557c54460d..a6984d397c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,7 +12,6 @@ env: jobs: lint: name: Lint Userstyles - runs-on: ubuntu-latest steps: diff --git a/.github/workflows/maintainers.yml b/.github/workflows/maintainers.yml index 22f0639abc..f51753bc39 100644 --- a/.github/workflows/maintainers.yml +++ b/.github/workflows/maintainers.yml @@ -11,8 +11,8 @@ env: jobs: sync-maintainers: - runs-on: ubuntu-latest name: Sync maintainers + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -36,5 +36,3 @@ jobs: run: deno task sync-maintainers env: GITHUB_TOKEN: ${{ secrets.USERSTYLES_TOKEN }} - -# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json diff --git a/.github/workflows/pr-titles.yml b/.github/workflows/pr-titles.yml index 52bc616c0b..fcc1da46df 100644 --- a/.github/workflows/pr-titles.yml +++ b/.github/workflows/pr-titles.yml @@ -10,6 +10,7 @@ jobs: runs-on: ubuntu-latest permissions: pull-requests: write + steps: - name: Lint pull request title uses: amannn/action-semantic-pull-request@v5 diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index e8f13d2aa9..5319bf2e43 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -10,7 +10,9 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/labeler@v4.0.3 + + - name: Add pull request labels + uses: actions/labeler@v4.0.3 with: configuration-path: .github/pr-labeler.yml sync-labels: true diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 9f053fe93f..d730096633 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -9,10 +9,12 @@ on: jobs: update: - name: Update + name: Sync labels runs-on: ubuntu-latest + steps: - - uses: r7kamura/github-label-sync-action@v0 + - name: Sync labels + uses: r7kamura/github-label-sync-action@v0 if: ${{ github.repository == 'catppuccin/userstyles' }} with: allow_added_labels: "true" diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 1a53c8742b..f9aae64bce 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -11,18 +11,20 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: crate-ci/typos@master - id: typos - continue-on-error: true + - uses: actions/checkout@v4 - # 'continue-on-error' will always succeed, we should exit based on the outcome and not the conclusion - # ref: https://docs.github.com/en/actions/learn-github-actions/contexts#steps-context - - name: Fail when typos are found in pull request - if: ${{ github.event_name == 'pull_request' && steps.typos.outcome != 'success' }} - run: "exit 1" + - name: Check for typos + uses: crate-ci/typos@master + id: typos + continue-on-error: true - # We always want this check to pass on branch 'main' but continue to fail on PRs - - name: Pass on 'main' branch - if: ${{ github.repository == 'catppuccin/userstyles' && github.ref == 'refs/heads/main' }} - run: "exit 0" + # 'continue-on-error' will always succeed, we should exit based on the outcome and not the conclusion + # ref: https://docs.github.com/en/actions/learn-github-actions/contexts#steps-context + - name: Fail when typos are found in pull request + if: ${{ github.event_name == 'pull_request' && steps.typos.outcome != 'success' }} + run: "exit 1" + + # We always want this check to pass on branch 'main' but continue to fail on PRs + - name: Pass on 'main' branch + if: ${{ github.repository == 'catppuccin/userstyles' && github.ref == 'refs/heads/main' }} + run: "exit 0"