Skip to content

Commit

Permalink
release: 2.3.2
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
HardeepAsrani authored Jul 17, 2023
2 parents 2f63a20 + 89fda3f commit 97ec9f8
Show file tree
Hide file tree
Showing 41 changed files with 1,854 additions and 440 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
e2e:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name

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




2 changes: 1 addition & 1 deletion .github/workflows/pr-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
add-labels:
runs-on: ubuntu-latest
name: Label PR based on checklist
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
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]'
steps:
- name: Check if checklist items are completed
uses: Codeinwp/gha-pr-check-helper@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
from_branch: master
target_branch: development
github_token: ${{ secrets.BOT_TOKEN }}
- name: Merge development -> v2.3
- name: Merge development -> next
if: ${{ steps.retrieve-branch-name.outputs.branch_name == 'development' }}
uses: Codeinwp/merge-branch@master
with:
type: now
from_branch: development
target_branch: v2.3
target_branch: next
github_token: ${{ secrets.BOT_TOKEN }}
5 changes: 4 additions & 1 deletion .github/workflows/test-js.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Test JS


on: [pull_request]
on:
pull_request:
types: [ opened, synchronize, ready_for_review ]

jobs:
run:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
strategy:
matrix:
node-version: [18.x]
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test-php.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: Test PHP

on: [pull_request]
on:
pull_request:
types: [ opened, synchronize, ready_for_review ]

jobs:
phplint:
name: Phplint
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
steps:
- name: Setup PHP version
uses: shivammathur/setup-php@v1
Expand Down Expand Up @@ -33,6 +36,7 @@ jobs:
phpunit:
name: Phpunit
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
services:
mysql:
image: mysql:5.7
Expand Down Expand Up @@ -72,6 +76,7 @@ jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false && github.event.pull_request.head.repo.full_name == github.event.pull_request.base.repo.full_name
steps:
- name: Setup PHP version
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"dealerdirect/phpcodesniffer-composer-installer": "0.7.1",
"automattic/vipwpcs": "^1.0.0",
"phpunit/phpunit": "9.6.5",
"yoast/phpunit-polyfills": "^1.0",
"yoast/phpunit-polyfills": "^2.0",
"phpstan/phpstan": "^1.10",
"szepeviktor/phpstan-wordpress": "^1.3",
"php-stubs/woocommerce-stubs": "^7.7",
Expand Down
108 changes: 54 additions & 54 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 97ec9f8

Please sign in to comment.