Skip to content

Commit 22d18ac

Browse files
committed
Update from voxpupuli/container_modulesync_config
1 parent a075b77 commit 22d18ac

File tree

6 files changed

+14
-4
lines changed

6 files changed

+14
-4
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
33

44
# No matter which file got changed, request a review from the main developers
5-
* @OpenVoxProject/container-maintainers
5+
* @openvoxproject/container-maintainers

.github/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ changelog:
1414
- skip-changelog
1515
- wont-fix
1616
- wontfix
17+
- github_actions
1718

1819
categories:
1920
- title: Breaking Changes 🛠

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
name: Release
1515
uses: voxpupuli/crafty/.github/workflows/release.yml@main
1616
with:
17-
allowed_owner: voxpupuli
17+
allowed_owner: openvoxproject

RELEASE.md

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ bundle config set --local with 'release'
1818
bundle install
1919

2020
CHANGELOG_GITHUB_TOKEN="token_MC_tokenface" bundle exec rake changelog
21+
2122
git commit --all --message "Release v${RELEASE_VERSION}"
2223
git push --set-upstream origin HEAD
2324
```

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ else
1212
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
1313
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
1414
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog modulesync github_actions]
15-
config.user = 'OpenVoxProject'
16-
config.project = 'container-openvoxserver'
15+
config.user = 'openvoxproject'
16+
config.project = 'container-openvoxagent'
1717
# get branch name from git and strip off any prefixes (e.g. 'release-')
1818
config.future_release = `git rev-parse --abbrev-ref HEAD`.strip.split('-', 2).last
1919
end

renovate.json

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
"config:recommended"
55
],
66
"customManagers": [
7+
{
8+
"customType": "regex",
9+
"fileMatch": ["build_versions.yaml"],
10+
"matchStrings": [
11+
"rubygem_(?<depName>[a-z0-9_]+):\\s+'(?<currentValue>\\d+\\.\\d+\\.\\d+)'"
12+
],
13+
"datasourceTemplate": "rubygems"
14+
},
715
{
816
"customType": "regex",
917
"fileMatch": ["build_versions.yaml"],

0 commit comments

Comments
 (0)