generated from Templates/Baseline
Compare commits
10 Commits
v1.8.3
...
renovate/t
Author | SHA1 | Date | |
---|---|---|---|
46e161b6c4 | |||
3cc5bcaf79 | |||
88f6aa5684 | |||
3dedeb07d0 | |||
4324be16c6 | |||
8cf6c45192 | |||
9131f21ca1 | |||
d8d625cdaa | |||
00b31c1940 | |||
222c78075a |
@ -5,7 +5,7 @@ when:
|
||||
- ${CI_REPO_DEFAULT_BRANCH}
|
||||
|
||||
variables:
|
||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:5.1.0'
|
||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:5.2.1'
|
||||
# deployment targets
|
||||
- &publish_repos 'ocram85/arkanum,gitea.ocram85.com/arkanum/arkanum,ghcr.io/ocram85/arkanum,codeberg.org/arkanum/arkanum'
|
||||
# logins for deployment targets
|
||||
|
@ -5,7 +5,7 @@ when:
|
||||
- ${CI_REPO_DEFAULT_BRANCH}
|
||||
|
||||
variables:
|
||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:5.1.0'
|
||||
- &build_plugin 'woodpeckerci/plugin-docker-buildx:5.2.1'
|
||||
# deployment targets
|
||||
- &publish_repos 'ocram85/arkanum-docs,gitea.ocram85.com/arkanum/arkanum-docs'
|
||||
# logins for deployment targets
|
||||
|
19
.woodpecker/release-helper.yml
Normal file
19
.woodpecker/release-helper.yml
Normal 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
|
@ -1,4 +1,4 @@
|
||||
FROM quay.io/linuxserver.io/code-server:4.96.2
|
||||
FROM quay.io/linuxserver.io/code-server:4.97.2
|
||||
|
||||
#LABEL build_version=""
|
||||
LABEL maintainer="OCram85"
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM oven/bun:1.1.43 AS builder
|
||||
FROM oven/bun:1.2.4 AS builder
|
||||
|
||||
ARG CI
|
||||
ARG CI_COMMIT_PULL_REQUEST
|
||||
|
@ -8,12 +8,12 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "latest",
|
||||
"prettier": "3.4.2",
|
||||
"prettier": "3.5.2",
|
||||
"rimraf": "6.0.1",
|
||||
"vitepress": "1.5.0"
|
||||
"vitepress": "1.6.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"typescript": "5.7.3"
|
||||
"typescript": "5.8.3"
|
||||
},
|
||||
"scripts": {
|
||||
"docs:clean": "rimraf docs/.vitepress/dist docs/.vitepress/dist",
|
||||
|
67
release-config.ts
Normal file
67
release-config.ts
Normal 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,
|
||||
},
|
||||
],
|
||||
}
|
Reference in New Issue
Block a user