fix(chatgpt): fix new ui + accent colours #728
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: Typo Checker | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
spellcheck: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for typos | |
uses: crate-ci/typos@master | |
id: typos | |
continue-on-error: true | |
# '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" |