From 21c1932f856c8dde6d100148208756467bb009cf Mon Sep 17 00:00:00 2001 From: Hardeep Asrani Date: Tue, 31 Mar 2026 19:27:01 +0530 Subject: [PATCH 1/2] chore: update compatibility flag --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 23d36b51..66954af0 100644 --- a/index.php +++ b/index.php @@ -163,7 +163,7 @@ function () { $compatibilities['VisualizerPRO'] = array( 'basefile' => defined( 'VISUALIZER_PRO_BASEFILE' ) ? VISUALIZER_PRO_BASEFILE : '', 'required' => '1.8', - 'tested_up' => '1.14', + 'tested_up' => '2.0', ); return $compatibilities; } From df0bcaf67658bb323e3c36a1855e76aeaa699531 Mon Sep 17 00:00:00 2001 From: Hardeep Asrani Date: Tue, 31 Mar 2026 19:52:50 +0530 Subject: [PATCH 2/2] feat(dev): add compat review action --- .github/workflows/compatibility-check.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/compatibility-check.yml diff --git a/.github/workflows/compatibility-check.yml b/.github/workflows/compatibility-check.yml new file mode 100644 index 00000000..96e537df --- /dev/null +++ b/.github/workflows/compatibility-check.yml @@ -0,0 +1,17 @@ +name: Compatibility Check + +on: + pull_request: + types: [opened, reopened, synchronize, labeled, unlabeled] + branches: + - master + +jobs: + compatibility-check: + name: Verify Compatibility Review + runs-on: ubuntu-latest + steps: + - name: Check compatibility label + uses: Codeinwp/action-product-compat@v1 + with: + github-token: ${{ secrets.BOT_TOKEN }} \ No newline at end of file