Skip to content

Commit

Permalink
ROX-22812: automatically bump the infra version on commit to master (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tommartensen authored Mar 4, 2024
1 parent 169566a commit 334ee32
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Bump version
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.RHACS_BOT_GITHUB_TOKEN }}
tag_prefix: ""
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
9 changes: 2 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
# Changelog

Entries in this file should be limited to:

- Any changes that introduce a deprecation in functionality, OR
- Obscure side-effects that are not obviously apparent based on the JIRA associated with the changes.
Please avoid adding duplicate information across this changelog and JIRA/doc input pages.

## [NEXT RELEASE]
This CHANGELOG is abandoned in favor of auto-generated release notes.
Please see the release description for change information.

## [0.8.14]

Expand Down

0 comments on commit 334ee32

Please sign in to comment.