Update codespell.yml

This will trigger Codespell for all pull requests with specific branches
This commit is contained in:
isaak654 2022-11-21 20:47:08 +01:00 committed by GitHub
parent 0a4ef651d5
commit da942a7e00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 5 deletions

View File

@ -8,11 +8,15 @@ on:
# 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 but only for the master branch
#push:
# branches: [ master ]
#pull_request:
# branches: [ master ]
# Triggers the workflow on push or pull request events
# push:
# branches:
# - 'master'
pull_request:
branches:
# - 'master'
- '*typo*'
- '*spell*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch: