paketo-buildpacks / github-config

Common repository configuration
Apache License 2.0
8 stars 12 forks source link

Show/hide patched usns section on release notes. #938

Closed pacostas closed 3 months ago

pacostas commented 3 months ago

Summary

This PR adds an option called supports-usns for showing or hiding patched usns as is something that is not supported by all stacks e.g. UBI

In that case, we would like to hide this section.

For example instead of this readme file

Build: `build_image_url`
Run: `run_image_url`

## Patched USNs
No USNs patched in this release.

## Build Image Package Changes
### Added
No packages added.

### Modified
No packages modified.

### Removed
No packages removed.

## Run Image Package Changes
### Added
No packages added.

### Modified
No packages modified.

### Removed
No packages removed.

We will get below output if we set the supports-usns option to false

Build: `build_image_url`
Run: `run_image_url`

## Build Image Package Changes
### Added
No packages added.

### Modified
No packages modified.

### Removed
No packages removed.

## Run Image Package Changes
### Added
No packages added.

### Modified
No packages modified.

### Removed
No packages removed.

Use Cases

Checklist