Skip to content

Commit

Permalink
Merge branch 'trunk' into update/108-nodejs-v20
Browse files Browse the repository at this point in the history
  • Loading branch information
eason9487 committed Apr 25, 2024
2 parents bb7aa16 + 1441c00 commit 03d3867
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
5 changes: 5 additions & 0 deletions packages/github-actions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 2024-04-25 (1.11.2)
### Tweaked 🔧
* Add PHP linter and PHP linting in GitHub Actions. (https://github.com/woocommerce/grow/pull/109)
* Get Plugin Releases - Prevent unstable releases. (https://github.com/woocommerce/grow/pull/102)

## 2024-02-06 (1.11.1)
### Bug Fixes 🐛
* Rename `add/qit-workflows-test-build` to `actions-v1` branch. (https://github.com/woocommerce/grow/pull/96)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,14 @@ function parsePluginVersions( releases = {} ) {
const output = [];

if ( slug !== 'wordpress' ) {
const latest = releases.version;
const versions = Object.keys( releases.versions )
.filter(
( version ) =>
version !== 'trunk' &&
version !== 'other' &&
! version.includes( 'beta' )
! version.includes( 'beta' ) &&
( isRC( version ) || semverCompare( latest, version ) <= 0 )
)
.sort( semverCompare );

Expand Down
4 changes: 2 additions & 2 deletions packages/github-actions/package-lock.json

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

2 changes: 1 addition & 1 deletion packages/github-actions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "woocommerce-grow-github-actions",
"version": "1.11.1",
"version": "1.11.2",
"description": "GitHub JavaScript actions for a WooCommerce plugin repo by Grow Team.",
"type": "module",
"scripts": {
Expand Down

0 comments on commit 03d3867

Please sign in to comment.