Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0c66714

Browse filesBrowse files
committed
Build/Test Tools: Run automated testing when tags are created.
This expands the list of events that triggers automated testing to include tags. It also refines the matched version ranges for several workflows. Merges [50298] to the 5.6 branch. See #50401. git-svn-id: https://develop.svn.wordpress.org/branches/5.6@50301 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 7881f91 commit 0c66714
Copy full SHA for 0c66714

File tree

Expand file treeCollapse file tree

5 files changed

+23
-6
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

5 files changed

+23
-6
lines changed
Open diff view settings
Collapse file

‎.github/workflows/coding-standards.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/coding-standards.yml
+6-2Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ on:
44
push:
55
branches:
66
- master
7+
# JSHint was introduced in WordPress 3.8.
78
# PHPCS checking was introduced in WordPress 5.1.
8-
- '5.[1-9]'
9-
- '[6-9].*'
9+
- '3.[89]'
10+
- '[4-9].[0-9]'
11+
tags:
12+
- '3.[89]*'
13+
- '[4-9].[0-9]*'
1014
pull_request:
1115

1216
jobs:
Collapse file

‎.github/workflows/javascript-tests.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/javascript-tests.yml
+6-1Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ on:
44
push:
55
branches:
66
- master
7-
- '*.*'
7+
# JavaScript testing was introduced in WordPress 3.8.
8+
- '3.[89]'
9+
- '[4-9].[0-9]'
10+
tags:
11+
- '3.[89]*'
12+
- '[4-9].[0-9]*'
813
pull_request:
914

1015
jobs:
Collapse file

‎.github/workflows/php-compatibility.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/php-compatibility.yml
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66
- master
77
# The PHP compatibility testing was introduced in WordPress 5.5.
88
- '5.[5-9]'
9-
- '[6-9].*'
9+
- '[6-9].[0-9]'
10+
tags:
11+
- '5.[5-9]*'
12+
- '[6-9].[0-9]*'
1013
pull_request:
1114

1215
jobs:
Collapse file

‎.github/workflows/phpunit-tests.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/phpunit-tests.yml
+5-1Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ on:
44
push:
55
branches:
66
- master
7-
- '*.*'
7+
- '3.[7-9]'
8+
- '[4-9].[0-9]'
9+
tags:
10+
- '3.[7-9]*'
11+
- '[4-9].[0-9]*'
812
pull_request:
913
# Once weekly On Sundays at 00:00 UTC.
1014
schedule:
Collapse file

‎.github/workflows/verify-npm-on-windows.yml‎

Copy file name to clipboardExpand all lines: .github/workflows/verify-npm-on-windows.yml
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ on:
44
push:
55
branches:
66
- master
7-
- '*.*'
7+
- '3.[7-9]'
8+
- '[4-9].[0-9]'
89
pull_request:
910

1011
env:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.