From 51f378801717b73386aef07361d6901885216198 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 31 Dec 2025 17:25:40 +0000 Subject: [PATCH 1/3] Initial plan From 1708737962cf6c1feabef6db67df8056f73dc4c1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 31 Dec 2025 17:29:25 +0000 Subject: [PATCH 2/3] Fix release workflow: add permissions and fail on version mismatch Co-authored-by: alecgeatches <17870752+alecgeatches@users.noreply.github.com> --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 668f1af..400518c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,9 @@ on: branches: - trunk +permissions: + contents: write + jobs: check_and_release: runs-on: ubuntu-latest @@ -23,6 +26,7 @@ jobs: echo "Error: Version mismatch detected!" echo "Plugin header version: $NEW_VERSION" echo "Defined constant version: $DEFINED_VERSION" + exit 1 fi if [ "$OLD_VERSION" != "$NEW_VERSION" ]; then From 1c127a15b05f2731709b56d81222508b667196c2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 31 Dec 2025 17:32:38 +0000 Subject: [PATCH 3/3] Remove exit 1 from version mismatch check Co-authored-by: alecgeatches <17870752+alecgeatches@users.noreply.github.com> --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 400518c..19de46b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,6 @@ jobs: echo "Error: Version mismatch detected!" echo "Plugin header version: $NEW_VERSION" echo "Defined constant version: $DEFINED_VERSION" - exit 1 fi if [ "$OLD_VERSION" != "$NEW_VERSION" ]; then