gitea-package/release-config.ts
OCram85 48b74964fa
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/test-image Pipeline was successful
ci/woodpecker/push/release-hepler Pipeline was successful
fix filename typo for release helper (#33)
### 📖 Summary

- fix typo

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #33
2025-02-24 09:58:45 +01:00

68 lines
1.2 KiB
TypeScript

export default {
skipLabels: [
// FIXME: ignoring a label prevents processing the full PR!
//'build_pr_images',
// ignore issue labels
'duplicate',
'help wanted',
'invalid',
'question',
'wontfix',
],
changeTypes: [
{
title: '💥 Breaking changes',
labels: ['breaking'],
bump: 'major',
weight: 4,
},
{
title: '✨ Features',
labels: ['feature'],
bump: 'minor',
weight: 3,
},
{
title: '🛠️ Enhancement',
labels: ['enhancement'],
bump: 'minor',
weight: 2,
},
{
title: '🐛 Bug Fixes',
labels: ['bug'],
bump: 'patch',
weight: 1,
},
{
title: '🤖 Dependency',
labels: ['renovate', 'dependency'],
bump: 'patch',
},
{
title: '📚 Documentation',
labels: ['docs'],
bump: 'patch',
},
{
title: '📦 Build',
labels: ['pipeline'],
bump: 'patch',
weight: -1,
},
{
title: '⚙️ Meta',
labels: ['meta'],
bump: 'patch',
weight: -2,
},
{
title: '🔖 Misc',
labels: ['misc'],
bump: 'patch',
default: true,
weight: -3,
},
],
}