Skip to content

Commit

Permalink
ci: Upgrade Release Please to v4 (#2128)
Browse files Browse the repository at this point in the history
  • Loading branch information
tippmar-nr authored Dec 8, 2023
1 parent 13846dd commit 2443c91
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@ jobs:
disable-sudo: true
egress-policy: audit

- uses: google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3.7.13
- uses: google-github-actions/release-please-action@a6d1fd9854c8c40688a72f7e4b072a1e965860a0 # v4.0.0
with:
release-type: go
changelog-path: src/Agent/CHANGELOG.md
token: ${{ secrets.DOTNET_AGENT_GH_TOKEN }}
changelog-types: '[{"type":"notice","section":"Notice","hidden":false},{"type":"feat","section":"New features","hidden":false},{"type":"fix","section":"Fixes","hidden":false},{"type":"security","section":"Security","hidden":false}]'
config-file: release-please/release-please-config.json
manifest-file: release-please/.release-please-manifest.json
3 changes: 3 additions & 0 deletions release-please/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "10.20.0"
}
36 changes: 36 additions & 0 deletions release-please/release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"packages": {
".": {
"changelog-path": "src/Agent/CHANGELOG.md",
"release-type": "go",
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false,
"changelog-sections": [
{
"type": "notice",
"section": "Notice",
"hidden": false
},
{
"type": "feat",
"section": "New features",
"hidden": false
},
{
"type": "fix",
"section": "Fixes",
"hidden": false
},
{
"type": "security",
"section": "Security",
"hidden": false
}
]
}
},
"plugins": ["sentence-case"],
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}

0 comments on commit 2443c91

Please sign in to comment.