mirror of https://github.com/valkey-io/valkey
Fix and remove conflicting paths from clang-format workflow (#2455)
Fixes the GitHub Actions error where both `paths` and `paths-ignore` were defined for the same event, which is not allowed. Resolves the error: "you may only define one of `paths` and `paths-ignore` for a single event" Removed the conflicting `paths` section from the `pull_request` trigger, keeping only `paths-ignore` to skip documentation changes while allowing the workflow to run on all other changes. This is a follow-up fix to address the issue identified in the previous PR. Signed-off-by: Hanxi Zhang <hanxizh@amazon.com>
This commit is contained in:
parent
c6794fd2cc
commit
7bbf5233c8
|
|
@ -7,8 +7,6 @@ on:
|
|||
- '**/00-RELEASENOTES'
|
||||
- '**/COPYING'
|
||||
pull_request:
|
||||
paths:
|
||||
- 'src/**'
|
||||
paths-ignore:
|
||||
- '**/*.md'
|
||||
- '**/00-RELEASENOTES'
|
||||
|
|
|
|||
Loading…
Reference in New Issue