Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gbh-tech/check-semantic-release-action
Validate that the current release matches the regular expression of a semantic versioning tag.
https://github.com/gbh-tech/check-semantic-release-action
action check deployment semantic validation
Last synced: 3 months ago
JSON representation
Validate that the current release matches the regular expression of a semantic versioning tag.
- Host: GitHub
- URL: https://github.com/gbh-tech/check-semantic-release-action
- Owner: gbh-tech
- License: mit
- Created: 2024-04-01T19:36:16.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-24T20:55:40.000Z (8 months ago)
- Last Synced: 2024-09-30T23:24:55.107Z (3 months ago)
- Topics: action, check, deployment, semantic, validation
- Language: Shell
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT
Awesome Lists containing this project
README
# Check Semantic Release
## Content
- [Overview](#overview)
- [Environment pattern](#environment-pattern)
- [Usage](#usage)
- [Examples](#examples)## Overview
This GitHub Action facilitates setting checking if tag follow our convention.
> ⚠️ This action is tailored for our specific needs and development workflow,
> at this moment, you cannot change the triggering events or the environment
> tag. Only use if you can adapt it on your workflow!## Environment pattern
The environment tag should follow one of these patterns to match our convention:
- `v[0-9].[0-9].[0-9]`
- `v[0-9].[0-9].[0-9]-uat.[0-9]`The Action uses `github.ref_name` to determine the tag name.
## Usage
See [action.yml](action.yml) for more info about the action.
```yaml
- uses: gbh-tech/[email protected]
```### Examples
```yaml
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gbh-tech/[email protected]
```