# cloud-get-next-version-action **Repository Path**: mirrors_NordicSemiconductor/cloud-get-next-version-action ## Basic Information - **Project Name**: cloud-get-next-version-action - **Description**: Determines the next release version for this repository - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: saga - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-27 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Get Next Release Action [![GitHub Actions](https://github.com/bifravst/get-next-version-action/workflows/Test%20and%20Release/badge.svg)](https://github.com/bifravst/get-next-version-action/actions) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![Renovate](https://img.shields.io/badge/renovate-enabled-brightgreen.svg)](https://renovatebot.com) [![@commitlint/config-conventional](https://img.shields.io/badge/%40commitlint-config--conventional-brightgreen)](https://github.com/conventional-changelog/commitlint/tree/master/@commitlint/config-conventional) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier/) [![ESLint: TypeScript](https://img.shields.io/badge/ESLint-TypeScript-blue.svg)](https://github.com/typescript-eslint/typescript-eslint) Determines the next release version for the current repository, using [`@semantic-release/commit-analyzer`](https://github.com/semantic-release/commit-analyzer). This is useful in cases where you need to know the version that is about to be released, so it can be included as a version string in a build. ## Usage ```yaml - uses: actions/checkout@v2 - name: Determine next release version uses: bifravst/get-next-version-action@saga id: version with: branch: saga defaultVersion: "0.0.0-development" ``` `${{ steps.version.outputs.nextRelease }}` then contains the next release version (or `0.0.0-development` if no new release would be created). [Here](./.github/workflows/usage.yaml) is a minimal example.