Skip to content

Commit

Permalink
Fix glob for skipping .md files
Browse files Browse the repository at this point in the history
  • Loading branch information
gaby committed Jul 8, 2024
1 parent 896bfa6 commit 749bdf7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:
paths:
- "**"
- "!docs/**"
- "!**.md"
- "!**/*.md"
pull_request:
paths:
- "**"
- "!docs/**"
- "!**.md"
- "!**/*.md"

name: Benchmark
jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
paths:
- "**"
- "!docs/**"
- "!**.md"
- "!**/*.md"
pull_request:
paths:
- "**"
- "!docs/**"
- "!**.md"
- "!**/*.md"
schedule:
- cron: "0 3 * * 6"

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ on:
branches:
- master
- main
paths:
- "**"
- "!docs/**"
- "!**/*.md"
pull_request:
paths:
- "**"
- "!docs/**"
- "!**/*.md"

permissions:
# Required: allow read access to the content for analysis.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
paths:
- "**"
- "!docs/**"
- "!**.md"
- "!**/*.md"
pull_request:
paths:
- "**"
- "!docs/**"
- "!**.md"
- "!**/*.md"

jobs:
unit:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
paths:
- "**"
- "!docs/**"
- "!**.md"
- "!**/*.md"
pull_request:
paths:
- "**"
- "!docs/**"
- "!**.md"
- "!**/*.md"

jobs:
govulncheck-check:
Expand Down

0 comments on commit 749bdf7

Please sign in to comment.