Skip to content

Commit

Permalink
feat: test bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-nfc committed Aug 15, 2024
1 parent 407666a commit 1ecb94c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ commitizen:
prerelease_offset: 1
tag_format: $version
update_changelog_on_bump: false
version: 1.21.0-a1
version: 2.0.0
version_scheme: semver
3 changes: 3 additions & 0 deletions .github/additional_actions_bump.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

sed -E "s/version: (.+)/version: ${NEW_VERSION}/g" -i galaxy.yml
31 changes: 31 additions & 0 deletions .github/workflows/bump.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---

name: 'Bump'


on:
workflow_dispatch:
inputs:
CZ_PRE_RELEASE:
default: none
required: false
description: Create Pre-Release {alpha,beta,rc,none}
CZ_INCREMENT:
default: none
required: false
description: Type of bump to conduct {MAJOR,MINOR,PATCH,none}
push:
branches:
- 'master'


jobs:

bump:
name: 'Bump'
uses: nofusscomputing/action_bump/.github/workflows/bump.yaml@5-additional-bump-action
with:
CZ_PRE_RELEASE: ${{ inputs.CZ_PRE_RELEASE }}
CZ_INCREMENT: ${{ inputs.CZ_INCREMENT }}
secrets:
WORKFLOW_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}

0 comments on commit 1ecb94c

Please sign in to comment.