semantic-version
semantic-version copied to clipboard
A GitHub Action to generate semantic version from a git repository's commit history.
Hello Author, Thanks for the action it is really useful. Is there any way to increase the patch version using commit message similar to Major and Minor version. I understood...
Is it possible to specify the base version number. For instance, if the pre-existing tagged version before using this tool was 2.0.1. Can I specify that in the yml to...
I used this action in a [recent workflow](https://github.com/adobe/xmp-toolkit-rs/actions/runs/3291504965/jobs/5425744060#step:5:13) and it generated a warning: > Warning: The set-output command is deprecated and will be disabled soon. Please upgrade to using Environment...
Would be nice to have an output that tells what kind of version change was made so that info can be used for some other automation. For example we have...
Configure a github action with the following step: ``` uses: paulhatch/[email protected] id: semantic_namespaced with: namespace: infrasturcture/namespace tag_prefix: "v" major_pattern: "BREAKING" minor_pattern: "feat" ``` Expected behavior: A tag similar to `v0.1.0-infrastructure/network`...
Given the following workflow: ``` name: "CI" on: push: branches: [main] jobs: release: runs-on: ubuntu-latest steps: - name: Checkout Sources uses: actions/checkout@v3 with: fetch-depth: 20 - name: App Release id:...
Hi, sorry for bothering again ! I actually stumbled a small edge case that I'm aware is probably very unusual. So here my current release flow : I use this...
Thank you for providing this Github Action for everyone! We are in the process of moving from Concourse to Github Actions, and I found that your action is the closest...
Scenario: Merge 2 PRs, 1 right after another. 1 of the action runs and other one is waiting(by using concurrency: ${{ github.workflow }}) After 1st PR processing done it create...
Hello, it would be nicer if the action can support the major/minor patterns also in the body of the PR. Usually when a PR is merged the subject is autogenerated...