Compare commits

...

4 Commits

Author SHA1 Message Date
428c224286 chore(deps): update oven/bun docker tag to v1.2.3
All checks were successful
ci/woodpecker/pr/docs Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful
2025-02-24 08:02:00 +01:00
d8d625cdaa fix typo in dependy workflows
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/push/release-helper Pipeline was successful
2025-02-24 07:56:13 +01:00
00b31c1940 fix used secrets (#166)
All checks were successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/ci Pipeline was successful
### 📖 Summary

just fix typo

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #166
2025-02-24 07:54:02 +01:00
222c78075a switch to release helper (#165)
### 📖 Summary

- migrate to woodpecker 3++ syntax
- add release helper

### 📑 Test Plan

 CI pipeline tests (Default)

### 💬 Details

_No response_

### 📚 Additional Notes

_No response_

Reviewed-on: #165
2025-02-24 07:50:04 +01:00
3 changed files with 87 additions and 1 deletions

View File

@ -0,0 +1,19 @@
depends_on:
- ci
- docs
when:
- event: push
branch:
- ${CI_REPO_DEFAULT_BRANCH}
- event: manual
evaluate: TASK == "release-helper"
steps:
release-helper:
image: woodpeckerci/plugin-ready-release-go:3.1.3
settings:
debug: true
git_email: noreply@ocram85.com
forge_token:
from_secret: ci_token

View File

@ -1,4 +1,4 @@
FROM oven/bun:1.1.43 AS builder
FROM oven/bun:1.2.3 AS builder
ARG CI
ARG CI_COMMIT_PULL_REQUEST

67
release-config.ts Normal file
View File

@ -0,0 +1,67 @@
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,
},
],
}