mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
19 lines
403 B
YAML
19 lines
403 B
YAML
|
name: Spellcheck
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
|
||
|
jobs:
|
||
|
spellcheck:
|
||
|
name: Typo CI (GitHub Action)
|
||
|
runs-on: ubuntu-latest
|
||
|
timeout-minutes: 4
|
||
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||
|
steps:
|
||
|
- name: TypoCheck
|
||
|
uses: typoci/spellcheck-action@master
|
||
|
env:
|
||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|