Skip to content

Commit 97ec9f8

Browse files
release: 2.3.2
- Added Autoresponder to Stripe Block - Adding Alternative Style to Review Block - Improvements to Dynamic Value Module - Fix Form Redirection Not Working Correctly - Fix Bow Shadow Not Visible in the Editor
2 parents 2f63a20 + 89fda3f commit 97ec9f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1854
-440
lines changed

.github/workflows/e2e-js.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
jobs:
1010
e2e:
1111
runs-on: ubuntu-latest
12+
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
1213

1314
steps:
1415
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
@@ -107,4 +108,4 @@ jobs:
107108
TYPING_ABOVE_60: ${{ steps.summary.outputs.TYPING_ABOVE_60 }}
108109

109110

110-
111+

.github/workflows/pr-checklist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
add-labels:
1414
runs-on: ubuntu-latest
1515
name: Label PR based on checklist
16-
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
16+
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name && github.actor != 'dependabot[bot]'
1717
steps:
1818
- name: Check if checklist items are completed
1919
uses: Codeinwp/gha-pr-check-helper@master

.github/workflows/sync-branches.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
from_branch: master
2222
target_branch: development
2323
github_token: ${{ secrets.BOT_TOKEN }}
24-
- name: Merge development -> v2.3
24+
- name: Merge development -> next
2525
if: ${{ steps.retrieve-branch-name.outputs.branch_name == 'development' }}
2626
uses: Codeinwp/merge-branch@master
2727
with:
2828
type: now
2929
from_branch: development
30-
target_branch: v2.3
30+
target_branch: next
3131
github_token: ${{ secrets.BOT_TOKEN }}

.github/workflows/test-js.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
name: Test JS
22

33

4-
on: [pull_request]
4+
on:
5+
pull_request:
6+
types: [ opened, synchronize, ready_for_review ]
57

68
jobs:
79
run:
810
runs-on: ubuntu-latest
11+
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
912
strategy:
1013
matrix:
1114
node-version: [18.x]

.github/workflows/test-php.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
name: Test PHP
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
types: [ opened, synchronize, ready_for_review ]
46

57
jobs:
68
phplint:
79
name: Phplint
810
runs-on: ubuntu-latest
11+
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
912
steps:
1013
- name: Setup PHP version
1114
uses: shivammathur/setup-php@v1
@@ -33,6 +36,7 @@ jobs:
3336
phpunit:
3437
name: Phpunit
3538
runs-on: ubuntu-latest
39+
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
3640
services:
3741
mysql:
3842
image: mysql:5.7
@@ -72,6 +76,7 @@ jobs:
7276
phpstan:
7377
name: PHPStan
7478
runs-on: ubuntu-latest
79+
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
7580
steps:
7681
- name: Setup PHP version
7782
uses: shivammathur/setup-php@v2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dealerdirect/phpcodesniffer-composer-installer": "0.7.1",
1111
"automattic/vipwpcs": "^1.0.0",
1212
"phpunit/phpunit": "9.6.5",
13-
"yoast/phpunit-polyfills": "^1.0",
13+
"yoast/phpunit-polyfills": "^2.0",
1414
"phpstan/phpstan": "^1.10",
1515
"szepeviktor/phpstan-wordpress": "^1.3",
1616
"php-stubs/woocommerce-stubs": "^7.7",

composer.lock

Lines changed: 54 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)