Skip to content

Commit

Permalink
feat: prepare 3.0.0 release candidate again
Browse files Browse the repository at this point in the history
Release-As: 3.0.0-rc.1
  • Loading branch information
trevorwhitney committed Mar 27, 2024
1 parent 2b8db8b commit 6b3a125
Show file tree
Hide file tree
Showing 5 changed files with 840 additions and 7 deletions.
29 changes: 26 additions & 3 deletions .github/release-workflows.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,13 @@ local imagePrefix = 'grafana';
skipValidation=false,
useGitHubAppToken=true,
versioningStrategy='always-bump-patch',
), false, false
) + {
name: 'Prepare Patch Release PR',
}, false, false
),
'minor-release-pr.yml': std.manifestYamlDoc(
lokiRelease.releasePRWorkflow(
branches=['k[0-9]+', 'main'],
branches=['k[0-9]+'],
buildImage=buildImage,
checkTemplate=checkTemplate,
golangCiLintVersion=golangCiLintVersion,
Expand All @@ -59,7 +61,28 @@ local imagePrefix = 'grafana';
skipValidation=false,
useGitHubAppToken=true,
versioningStrategy='always-bump-minor',
), false, false
) + {
name: 'Prepare Minor Release PR from Weekly',
}, false, false
),
'major-release-pr.yml': std.manifestYamlDoc(
lokiRelease.releasePRWorkflow(
branches=['main', 'add-major-release-workflow'],
buildImage=buildImage,
checkTemplate=checkTemplate,
golangCiLintVersion=golangCiLintVersion,
imageBuildTimeoutMin=imageBuildTimeoutMin,
imageJobs=imageJobs,
imagePrefix=imagePrefix,
releaseLibRef=releaseLibRef,
releaseRepo='grafana/loki',
skipArm=true,
skipValidation=true,
useGitHubAppToken=true,
versioningStrategy='always-bump-major',
) + {
name: 'Prepare Major Release PR from main',
}, false, false
),
'release.yml': std.manifestYamlDoc(
lokiRelease.releaseWorkflow(
Expand Down
Loading

0 comments on commit 6b3a125

Please sign in to comment.