Skip to content

Commit 0eddb27

Browse files
committed
chore: implement continuous delivery
1 parent 30a7ec3 commit 0eddb27

3 files changed

Lines changed: 37 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
environment:
2222
name: RubyGems
23-
url: https://rubygems.org/gems/ruby_git
23+
url: https://rubygems.org/gems/rspec-path_matchers
2424

2525
permissions:
2626
contents: write

.release-please-manifest.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

release-please-config.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"packages": {
3+
".": {
4+
"release-type": "ruby",
5+
"package-name": "rspec-path_matchers",
6+
"changelog-path": "CHANGELOG.md",
7+
"version-file": "lib/rspec/path_matchers/version.rb",
8+
"bump-minor-pre-major": true,
9+
"bump-patch-for-minor-pre-major": true,
10+
"draft": false,
11+
"prerelease": false,
12+
"include-component-in-tag": false,
13+
"pull-request-title-pattern": "chore: release v${version}",
14+
"changelog-sections": [
15+
{ "type": "feat", "section": "Features", "hidden": false },
16+
{ "type": "fix", "section": "Bug Fixes", "hidden": false },
17+
{ "type": "build", "section": "Other Changes", "hidden": false },
18+
{ "type": "chore", "section": "Other Changes", "hidden": false },
19+
{ "type": "ci", "section": "Other Changes", "hidden": false },
20+
{ "type": "docs", "section": "Other Changes", "hidden": false },
21+
{ "type": "perf", "section": "Other Changes", "hidden": false },
22+
{ "type": "refactor", "section": "Other Changes", "hidden": false },
23+
{ "type": "revert", "section": "Other Changes", "hidden": false },
24+
{ "type": "style", "section": "Other Changes", "hidden": false },
25+
{ "type": "test", "section": "Other Changes", "hidden": false }
26+
]
27+
}
28+
},
29+
"plugins": [
30+
{
31+
"type": "sentence-case"
32+
}
33+
],
34+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
35+
}

0 commit comments

Comments
 (0)