From b5786238552e300ada2bf6d2cca95532694c82ee Mon Sep 17 00:00:00 2001 From: "Oscar Sanchez S." Date: Sun, 16 Aug 2026 15:50:39 -0600 Subject: [PATCH 1/2] WP Compatibility Check Against WP Core 7.1 --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 842108a..8d19c7a 100644 --- a/readme.txt +++ b/readme.txt @@ -1,7 +1,7 @@ === Embed Block for Figma === Contributors: 10up, dkotter, jeffpaul Tags: gutenberg, figma, embed, blocks, custom blocks -Tested up to: 7.0 +Tested up to: 7.1 Stable tag: 0.4.0 License: GPL-2.0-or-later License URI: https://spdx.org/licenses/GPL-2.0-or-later.html From ae275b2190b08042ccf32de171461049750101e6 Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Wed, 19 Aug 2026 14:53:14 +1000 Subject: [PATCH 2/2] Allow tests to E2E tests to complete if one fails. --- .github/workflows/cypress.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 5e37961..74cf485 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -8,6 +8,13 @@ on: permissions: contents: read +# Cancels all previous workflow runs for pull requests that have not completed. +concurrency: + # The concurrency group contains the workflow name and the branch name for pull requests + # or the commit hash for any other events. + group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} + cancel-in-progress: true + jobs: build: uses: 10up/embed-block-figma/.github/workflows/build-release-zip.yml@develop @@ -19,6 +26,7 @@ jobs: if: always() strategy: + fail-fast: false matrix: core: - {name: 'WP latest', version: 'latest'}