Skip to content

Commit c449253

Browse files
Ignore docs and config changes in CI workflows (#9752)
1 parent 5fac9b0 commit c449253

File tree

6 files changed

+255
-113
lines changed

6 files changed

+255
-113
lines changed

.github/workflows/gallery.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,20 @@ name: Test version in Gallery
22
on:
33
workflow_dispatch:
44
push:
5-
branches:
6-
- master
5+
# branches: # Removed to apply to all branches
6+
# - master
7+
paths-ignore:
8+
- '**/*.md'
9+
- '**/*.json'
10+
- 'docs/**'
11+
- '.github/FUNDING.yml'
12+
- '.github/ISSUE_TEMPLATE/**'
13+
- '.github/PULL_REQUEST_TEMPLATE.md'
14+
- '.aider/**'
15+
- '.devcontainer/**'
16+
- '.vscode/**'
17+
- 'bin/**'
18+
- 'en-us/**'
719
defaults:
820
run:
921
shell: pwsh

.github/workflows/integration-tests-repl.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
name: Run Replication Tests
2-
on: [push]
2+
on:
3+
push:
4+
paths-ignore:
5+
- '**/*.md'
6+
- '**/*.json'
7+
- 'docs/**'
8+
- '.github/FUNDING.yml'
9+
- '.github/ISSUE_TEMPLATE/**'
10+
- '.github/PULL_REQUEST_TEMPLATE.md'
11+
- '.aider/**'
12+
- '.devcontainer/**'
13+
- '.vscode/**'
14+
- 'bin/**'
15+
- 'en-us/**'
316
defaults:
417
run:
518
shell: pwsh

.github/workflows/integration-tests.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
name: Run Cross Platform Tests
2-
on: [push]
2+
on:
3+
push:
4+
paths-ignore:
5+
- '**/*.md'
6+
- '**/*.json'
7+
- 'docs/**'
8+
- '.github/FUNDING.yml'
9+
- '.github/ISSUE_TEMPLATE/**'
10+
- '.github/PULL_REQUEST_TEMPLATE.md'
11+
- '.aider/**'
12+
- '.devcontainer/**'
13+
- '.vscode/**'
14+
- 'bin/**'
15+
- 'en-us/**'
316
defaults:
417
run:
518
shell: pwsh

.github/workflows/xplat-import.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
name: Cross Platform Import
2-
on: [push]
2+
on:
3+
push:
4+
paths-ignore:
5+
- '**/*.md'
6+
- '**/*.json'
7+
- 'docs/**'
8+
- '.github/FUNDING.yml'
9+
- '.github/ISSUE_TEMPLATE/**'
10+
- '.github/PULL_REQUEST_TEMPLATE.md'
11+
- '.aider/**'
12+
- '.devcontainer/**'
13+
- '.vscode/**'
14+
- 'bin/**'
15+
- 'en-us/**'
316

417
jobs:
518
build:

appveyor.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,23 @@ configuration: "Debug"
55
# skip PR builds when there's already a push build
66
skip_branch_with_pr: true
77

8+
skip_commits:
9+
files:
10+
- '**/*.md'
11+
- '**/*.json'
12+
- 'docs/**'
13+
- '.github/FUNDING.yml'
14+
- '.github/ISSUE_TEMPLATE/**'
15+
- '.github/PULL_REQUEST_TEMPLATE.md'
16+
- '.aider/**'
17+
- '.devcontainer/**'
18+
- '.vscode/**'
19+
- 'bin/**'
20+
- 'en-us/**'
21+
message: /\[skip ci\]/
22+
823
build_script:
9-
- ps: Set-Service wuauserv -StartupType Manual #otherwise, choco command exits with code 1058
24+
- ps: Set-Service wuauserv -StartupType Manual #otherwise, choco command exits with code 1058
1025

1126
version: 2.1.{build}
1227

0 commit comments

Comments
 (0)