Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-notes.d: initial directory for release note yaml snippets #550

Open
wants to merge 1 commit into
base: testing-devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions release-notes.d/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Fedora CoreOS Release Note

This directory stores the Fedora CoreOS release note yaml snippets which will be picked up by `fedora-coreos-releng-automation/coreos-release-note-generator` [1] script to produce `release-notes.yaml` with the corresponding latest release ID for the target stream.

Release notes will be organized according to the origin of the change, i.e. the project name. Otherwise miscellaneous changes will be stored under `miscellaneous`. Therefore, the schema of each yaml snippet is designed as follows:

```yaml
# Each yaml file consists of a list of dictionaries which looks like this
- component (required): [Custom Project Name] | miscellaneous
subject (required): xxx
body (optional): xxxxx
```

An example `release-notes.yaml`:
```
- 32.20200715.3.0:
coreos-assembler:
- subject: add a new sub-command that automates xxx
- subject: fix a bug that result in /~https://github.com/coreos/fedora-coreos-tracker/issues/xxx
miscellaneous:
- subject: introduce a new config file to facilitate xxx workflow
body: the config file as described in /~https://github.com/coreos/fedora-coreos-tracker/issues/xxx helps users to monitor xxx
- 32.20200706.3.0:
afterburn:
- subject: add support for platform xxx
- 32.20200620.1.0:
ignition:
- subject: fix a minor issue /~https://github.com/coreos/fedora-coreos-tracker/issues/xxx
...
```

[1] /~https://github.com/coreos/fedora-coreos-releng-automation
14 changes: 14 additions & 0 deletions release-notes.d/example.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Each list item should be a dictionary with structure:
# - component (required): [Custom Project Name] | miscellaneous
# subject (required): xxx
# body (optional): xxx
#
# For example:
# - component: coreos-installer
# subject: Retired the xxx sub-command
# body: The sub-command was constantly causing xxx failure (/~https://github.com/coreos/fedora-coreos-tracker/issues/ISSUE_NUMBER)
# - component: miscellaneous
# subject: Added package abc as per (/~https://github.com/coreos/fedora-coreos-tracker/issues/ISSUE_NUMBER)
- component: ""
subject: ""
body: ""