Skip to content

Commit

Permalink
ci: better readability for changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
josephpage committed Sep 26, 2023
1 parent cff3966 commit 60f9398
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,14 @@ jobs:
with:
release-type: terraform-module
package-name: release-please-action
changelog-types: |
[
{"type":"feat","section":"✨ New features","hidden":false},
{"type":"fix","section":"🐛 Bug fixes","hidden":false},
{"type":"chore","section":"👷 Other changes","hidden":false},
{"type":"ci","section":"👷 Other changes","hidden":false},
{"type":"refacto","section":"👷 Other changes","hidden":false},
{"type":"build","section":"👷 Other changes","hidden":false},
{"type":"docs","section":"📚 Documentation","hidden":false}
]
extra-files: README.md
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ An opinionated Terraform module to provision an application and database very ea

## Example usage

<!-- x-release-please-start-version -->
```tf
module "my_app" {
source = "scalingo-community/app/scalingo"
version = "0.2.0"
# Configure the name and the canonical domain of the application
name = "my-app"
Expand All @@ -28,10 +30,11 @@ module "my_app" {
# Attach a free PostgreSQL database
addons = [{ provider = "postgresql", plan = "postgresql-sandbox" }]
# Configure log drains
# Configure log drains, will be auto-configured for app and every addons
log_drains = [{ type = "elk", url = "https://user:[email protected]" }]
}
```
<!-- x-release-please-end -->

## Community

Expand Down

0 comments on commit 60f9398

Please sign in to comment.