Skip to content

Commit

Permalink
feat(CI): skip run the go CI test for markdown/docs files (cosmos#1907)
Browse files Browse the repository at this point in the history
* skip run the test CI for markdown files

* remove skip from the codeql ci

* only ignore md files for codeql
  • Loading branch information
Pantani authored Nov 16, 2022
1 parent f3afd69 commit 5aa51e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ on:
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
paths-ignore:
- "**/*.md"
schedule:
- cron: '0 * * * *'

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ name: Test
on:
workflow_call:
pull_request:
paths-ignore:
- "**/*.md"
- "docs/**"
push:
branches:
- main
paths-ignore:
- "**/*.md"
- "docs/**"

jobs:
cleanup-runs:
Expand Down

0 comments on commit 5aa51e2

Please sign in to comment.