Skip to content

Commit

Permalink
Create codespell.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
isaak654 committed Mar 20, 2022
1 parent 76f7077 commit dfbd328
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions

name: Codespell

# Controls when the workflow will run
on:
schedule:
# Trigger Codespell at a scheduled time
# * is a special character in YAML so you have to quote this string
- cron: '30 0 * * *'
# Triggers the workflow on push or pull request events
#push:
# branches: [ main ]
pull_request:
branches: [ main ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "Codespell"
Codespell:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Check spelling errors
uses: codespell-project/actions-codespell@master
with:
check_filenames: false
skip: ./.git
builtin: clear,rare,code

0 comments on commit dfbd328

Please sign in to comment.