Skip to content

Commit

Permalink
ci: Fix GH workflow trigger condition
Browse files Browse the repository at this point in the history
Ignored paths are too broad that essential runs may not happen
  • Loading branch information
abelcheung committed Jan 4, 2024
1 parent b2904e8 commit a03bb8e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@ on:
push:
paths-ignore:
- '**.md'
- '**.txt'
- 'docs/**'
- 'LICENSE*'
- '.*'
- '!.github/**'
branches:
- master
pull_request:
paths-ignore:
- '**.md'
- '**.txt'
- 'docs/**'
- 'LICENSE*'
- '.*'
- '!.github/**'

jobs:
check:
Expand Down

0 comments on commit a03bb8e

Please sign in to comment.