-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also: - show warnings / errors in GitHub when running from Actions - allow running from npm
- Loading branch information
1 parent
a3df7b8
commit d9b8878
Showing
20 changed files
with
1,108 additions
and
23 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
product_docs/docs/tpa/23/rel_notes/src/tpa_23.35.0_rel_notes.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"title": "Release notes metadata", | ||
"description": "Metadata used to structure release notes for a given product (or software collection)", | ||
"type": "object", | ||
"properties": { | ||
"product": { | ||
"description": "Full and formal name for the product", | ||
"type": "string" | ||
}, | ||
"shortname": { | ||
"description": "Short product name for the product - used in filename generation", | ||
"type": "string" | ||
}, | ||
"title": { | ||
"description": "Title for the index page.", | ||
"type": "string" | ||
}, | ||
"description": { | ||
"description": "Description for the index page.", | ||
"type": "string" | ||
}, | ||
"columns": { | ||
"description": "Details on the index pages columns, numbered 0 to at least 1.", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"description": "column definition", | ||
"patternProperties": { | ||
"^\\d+$": { | ||
"description": "column index", | ||
"type": "null" | ||
} | ||
}, | ||
"properties": { | ||
"label": { | ||
"description": "Column heading", | ||
"type": "string" | ||
}, | ||
"key": { | ||
"description": "key to use when generatings the column data", | ||
"anyOf": [ | ||
{ | ||
"type": "string", | ||
"enum": ["shortdate", "version-link"] | ||
}, | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
} | ||
}, | ||
"minProperties": 3 | ||
} | ||
}, | ||
"components": { | ||
"type": "array", | ||
"description": "List of valid components for product", | ||
"items": { "type": "string" } | ||
}, | ||
"intro": { | ||
"description": "Multi-line string that provides a brief introduction to the release notes. Supports Markdown.", | ||
"type": "string" | ||
}, | ||
"precursor": { | ||
"description": "list of preceding releases which already have release notes. Required if there are preceding releases to be included. Will be appended to the table and navigation. If meta fields are in use, they are required in the precursor list under meta, too.", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"version": { | ||
"description": "version string used for this 'precursor' version.", | ||
"type": "string" | ||
}, | ||
"date": { | ||
"description": "date this version was released", | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": { | ||
"description": "whatever values are needed for each of the meta columns defined above", | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"product", | ||
"shortname", | ||
"title", | ||
"columns" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.