Skip to content

Commit

Permalink
Correct workflow trigger ignore paths (#2622)
Browse files Browse the repository at this point in the history
  • Loading branch information
riverar committed Aug 18, 2023
1 parent 327abb1 commit 891c469
Show file tree
Hide file tree
Showing 13 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/debugger_visualizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/raw_dylib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-sys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '.github\ISSUE_TEMPLATE\**'
- '.github/ISSUE_TEMPLATE/**'
branches:
- master

Expand Down
4 changes: 4 additions & 0 deletions crates/tools/yml/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ fn test_yml() {
on:
pull_request:
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
branches:
- master
Expand Down Expand Up @@ -74,6 +76,8 @@ fn clippy_yml() {
on:
pull_request:
push:
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
branches:
- master
Expand Down

0 comments on commit 891c469

Please sign in to comment.