File tree Expand file tree Collapse file tree 6 files changed +255
-113
lines changed Expand file tree Collapse file tree 6 files changed +255
-113
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,20 @@ name: Test version in Gallery
2
2
on :
3
3
workflow_dispatch :
4
4
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/**'
7
19
defaults :
8
20
run :
9
21
shell : pwsh
Original file line number Diff line number Diff line change 1
1
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/**'
3
16
defaults :
4
17
run :
5
18
shell : pwsh
Original file line number Diff line number Diff line change 1
1
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/**'
3
16
defaults :
4
17
run :
5
18
shell : pwsh
Original file line number Diff line number Diff line change 1
1
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/**'
3
16
4
17
jobs :
5
18
build :
Original file line number Diff line number Diff line change @@ -5,8 +5,23 @@ configuration: "Debug"
5
5
# skip PR builds when there's already a push build
6
6
skip_branch_with_pr : true
7
7
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
+
8
23
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
10
25
11
26
version : 2.1.{build}
12
27
You can’t perform that action at this time.
0 commit comments