From 61ef147f511a89403294e7fe1d57e2aad11dc5ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 3 Jul 2024 19:02:25 +0200 Subject: [PATCH 1/2] Fix: Remove declaration of COMPOSER_ROOT_VERSION environment variable --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 758ad9475..256ba9079 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,9 +6,6 @@ on: name: CI -env: - COMPOSER_ROOT_VERSION: "9.2-dev" - jobs: coding-guidelines: name: Coding Guidelines From 08ec02a9408733ca2dce3c35b55cc5aac21ba5e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 16 Jul 2024 23:54:03 +0200 Subject: [PATCH 2/2] Fix: Adjust COMPOSER_ROOT_VERSION and branch alias --- .github/workflows/ci.yml | 3 +++ composer.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 256ba9079..58ccfec48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,9 @@ on: name: CI +env: + COMPOSER_ROOT_VERSION: "9.2.x-dev" + jobs: coding-guidelines: name: Coding Guidelines diff --git a/composer.json b/composer.json index 37a6f160f..4e3c0f6f7 100644 --- a/composer.json +++ b/composer.json @@ -63,7 +63,7 @@ }, "extra": { "branch-alias": { - "dev-main": "9.2-dev" + "dev-main": "9.2.x-dev" } } }