Skip to content

Commit

Permalink
Merge branch 'master' into tm/move-flavor-version-to-var
Browse files Browse the repository at this point in the history
  • Loading branch information
tommartensen committed Mar 5, 2024
2 parents 8781bec + 9ea1a0b commit 4740b5f
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 13 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/smoke-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,7 @@ run-name: >-
)
}}
env:
PROJECT: acs-team-temp-dev

on:
push:
branches:
- tm/move-flavor-version-to-var
workflow_dispatch:
inputs:
automation-flavors-version:
Expand All @@ -33,6 +27,7 @@ jobs:
run: |
echo "automation-flavors version: ${{ inputs.automation-flavors-version }}"
echo "Cluster: ${{ inputs.cluster }}"
<<<<<<< HEAD

smoke-test:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -79,3 +74,5 @@ jobs:
wait: true
endpoint: localhost:8443
insecure: true
=======
>>>>>>> master
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/[email protected]
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 4740b5f

Please sign in to comment.