diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index e9020e9de..8a3427d7d 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: 'v$RESOLVED_VERSION' -tag-template: 'v$RESOLVED_VERSION' +name-template: 'v$RESOLVED_VERSION-dev' +tag-template: 'v$RESOLVED_VERSION-dev' categories: - title: 🚀 Features label: 'enhancement' diff --git a/.github/workflows/version-code-and-release.yml b/.github/workflows/version-code-and-release.yml index 545dd3059..2cb792fb0 100644 --- a/.github/workflows/version-code-and-release.yml +++ b/.github/workflows/version-code-and-release.yml @@ -11,7 +11,7 @@ on: - 'detection_rules/**' - 'tests/**' - '**/*.md' - types: [opened, reopened, synchronize] + types: [opened, reopened, synchronize, labeled] push: branches: - main diff --git a/docs/versioning.md b/docs/versioning.md index c6c72eb72..c4ea01834 100644 --- a/docs/versioning.md +++ b/docs/versioning.md @@ -141,7 +141,7 @@ Increment the major version when introducing backward-incompatible changes that ## Tagging Process Each release will be tagged using the following format: -- **Tag Format**: `vX.Y.Z` (e.g., `v1.2.0`). +- **Tag Format**: `vX.Y.Z-dev` (e.g., `v1.2.0-dev`). - **Single Tag for Combined Releases**: If there are changes to the core detection-rules code or libraries (`kql`, `kibana`), they will be tagged together as a single release with the core detection-rules versioning. - **Hunting Folder**: Changes to the hunting logic will be included in the combined release.