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
56 changes: 56 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
changelog:
exclude:
labels:
- skip-changelog
authors:
- github-actions[bot]

categories:
- title: πŸ’₯ Breaking
labels:
- breaking-change
- title: ✨ Added
labels:
- kind/feature
- title: πŸ› οΈ Changed / Refactoring
labels:
- kind/refactoring
- kind/other
- title: πŸ“ Documentation
labels:
- kind/documentation
- title: ⚰️ Deprecated
labels:
- kind/deprecation
- title: πŸ—‘οΈ Removed
labels:
- kind/cleanup
- title: πŸ› Fixed
labels:
- kind/bug
- title: πŸ”’ Security
labels:
- security
- title: πŸ“¦ Dependency updates
labels:
- dependencies
- title: 🌱 Others
labels:
- "*"

templates:
title: "Release v$RESOLVED_VERSION"
body: |
## πŸ“¦ Overview
This release brings new features, bug fixes, and improvements.

## πŸ“ Changelog
$CHANGES

## πŸ”§ Upgrade notes
- Review **Breaking Changes** carefully.
- Follow migration steps if applicable.

## πŸ‘₯ Contributors
Thanks to everyone who contributed:
$CONTRIBUTORS
16 changes: 16 additions & 0 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Sync labels
on:
workflow_dispatch:

permissions:
issues: write # needed to edit labels

jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: EndBug/label-sync@v2
with:
config-file: 'https://raw.githubusercontent.com/outscale/.github/main/labels.yml'
# delete-other-labels: false # set to true for strict sync
# dry-run: false # set to true to preview changes