This is an automated email from the ASF dual-hosted git repository.
lukaszlenart pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/struts-intellij-plugin.git
The following commit(s) were added to refs/heads/main by this push:
new 52d36b4 ci: fix plugin version and build concurrency policy (#73)
52d36b4 is described below
commit 52d36b45d43e2b286b1362a37c5239a09182f77b
Author: Lukasz Lenart <[email protected]>
AuthorDate: Wed Apr 8 08:03:16 2026 +0200
ci: fix plugin version and build concurrency policy (#73)
Bump pluginVersion to 261.19017.1 to maintain monotonic build numbering
(18980 from latest non-nightly tag v252.18980.1 + 37 commits since).
Only cancel in-progress CI runs for pull requests, allowing main-branch
builds to complete independently.
Made-with: Cursor
---
.github/workflows/build.yml | 3 ++-
gradle.properties | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 4a192e2..b00f4ea 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -37,7 +37,8 @@ on:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number ||
github.ref }}
- cancel-in-progress: true
+ # Do not cancel main-branch runs: each push should complete so every commit
is verified and gets its own computed plugin version.
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
diff --git a/gradle.properties b/gradle.properties
index cfcd7af..9792ddd 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -4,7 +4,7 @@ pluginGroup = com.intellij.struts2
pluginName = struts2
pluginRepositoryUrl = https://github.com/apache/struts-intellij-plugin/
# SemVer format -> https://semver.org
-pluginVersion = 261.18970.1
+pluginVersion = 261.19017.1
# Supported build number ranges and IntelliJ Platform versions ->
https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 261