Skip to content

Commit

Permalink
Adding ignore for name.yml config file (#2787)
Browse files Browse the repository at this point in the history
* Adding ignore for name.yml config file

* Update main.yml to remove path ignore
  • Loading branch information
qureshi-ali committed Apr 9, 2024
1 parent 7926c88 commit 73cd6ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: |
codespell --ignore-words=.github/config/codespell.txt \
--exclude-file=.github/config/codespell.txt \
--skip="./db/migrate,./spec/fixtures,./spec/controllers/grades_controller_spec.rb"
--skip="./db/migrate,./spec/fixtures,./spec/controllers/grades_controller_spec.rb,./config/name.yml"
misspell:
name: Check spelling all files in commit with misspell
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
workflow_dispatch:
pull_request:
branches: [main, development]
paths-ignore: ['**.md', '**.yml']
paths-ignore: ['**.md']
push:
branches: [main, development]
paths-ignore: ['**.md', '**.yml']
paths-ignore: ['**.md']

jobs:
test:
Expand Down

0 comments on commit 73cd6ae

Please sign in to comment.