Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions .github/release-drafter-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name-template: '$RESOLVED_VERSION'
tag-template: '$RESOLVED_VERSION'

categories:
- title: '💥 Breaking Changes'
labels:
- breaking-change
- BREAKING
- title: '💡 New Features'
labels:
- feature
- enhancement
- title: '🐞 Bug Fixes'
labels:
- bug
- fix
- bugfix
- title: '⚙️ Technical Debt'
labels:
- refactor
- title: '📝 Documentation'
labels:
- documentation
- doc

change-template: "- (#$NUMBER) $TITLE by @$AUTHOR"

no-changes-template: 'No significant changes'

template: |
## 🚀 Release

### What's Changed
$CHANGES

---

**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$RESOLVED_VERSION

version-resolver:
major:
labels:
- major
minor:
labels:
- minor
patch:
labels:
- patch
default: patch
37 changes: 37 additions & 0 deletions .github/workflows/helm-charts-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Helm Charts Release
Comment thread
theboringstuff marked this conversation as resolved.
on:
workflow_dispatch:
inputs:
release:
description: "Release version (e.g. v0.35.2)"
required: true
type: string

permissions:
contents: write

run-name: ${{ github.repository }} Release ${{ inputs.release }}

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
github-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Create GitHub release
uses: netcracker/release-drafter@86f4276a3894b5af70480e826c32fe3648ac6a70 # v1.0.0
with:
config-name: release-drafter-config.yml
publish: true
name: ${{ inputs.release }}
tag: ${{ inputs.release }}
version: ${{ inputs.release }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading