Skip to content

Commit

Permalink
ci: Tweak release-please config to use explicit config (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
hairyhenderson authored May 13, 2024
1 parent 50b4fb7 commit 9fca377
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
".": "0.1.0"
}
10 changes: 7 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ updates:
schedule:
interval: daily
time: "02:00"
timezone: UTC
timezone: Etc/UTC
open-pull-requests-limit: 10
commit-message:
prefix: deps(go)
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
day: sunday
time: "02:00"
timezone: UTC
open-pull-requests-limit: 10
timezone: Etc/UTC
open-pull-requests-limit: 10
commit-message:
prefix: deps(actions)
41 changes: 41 additions & 0 deletions .github/release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"release-type": "go",
"changelog-type": "default",
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "deps",
"section": "Dependencies"
},
{
"type": "chore",
"section": "Miscellaneous Chores",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
}
],
"packages": {
".": {}
}
}
3 changes: 2 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ jobs:
- uses: google-github-actions/release-please-action@v4
with:
token: ${{ steps.app-token.outputs.token }}
release-type: go
config-file: .github/release-please-config.json
manifest-file: .github/.release-please-manifest.json

0 comments on commit 9fca377

Please sign in to comment.