fix: no html escaping for changelog template (#277)

This commit is contained in:
Jonas L. 2025-09-25 12:40:35 +02:00 committed by GitHub
parent 612928a382
commit b0c50518b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 37 additions and 24 deletions

View file

@ -0,0 +1,19 @@
## [1.0.0](https://example.com/1.0.0)
## Foo
- Cool thing
```go
// Some code example
func IsPositive(number int) error {
if number < 0 {
return fmt.Errorf("number %d is negative", number)
}
return nil
}
```
### Bug Fixes
- Foobar!

View file

@ -0,0 +1,9 @@
## [1.0.0](https://example.com/1.0.0)
### Bug Fixes
- Foobar!
## Compatibility
This version is compatible with flux-compensator v2.2 - v2.9.

View file

@ -38,7 +38,7 @@ This will be added to the end of the release notes.
~~~~rp-suffix
## Compatibility
No compatibility guarantees.
This version is compatible with flux-compensator v2.2 - v2.9.
~~~~
</details>

View file

@ -25,7 +25,7 @@ This will be added to the end of the release notes.
~~~~rp-suffix
## Compatibility
No compatibility guarantees.
This version is compatible with flux-compensator v2.2 - v2.9.
~~~~
</details>

View file

@ -1,3 +1,3 @@
## Compatibility
No compatibility guarantees.
This version is compatible with flux-compensator v2.2 - v2.9.