This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch ci/fix-plugin-version-and-cancel-policy in repository https://gitbox.apache.org/repos/asf/struts-intellij-plugin.git
commit ce9dfc765bff0ad4b24dc11d59e927c6a64e6198 Author: Lukasz Lenart <[email protected]> AuthorDate: Wed Apr 8 07:55:03 2026 +0200 ci: fix plugin version and build concurrency policy 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
