-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cicd] follow procedure for renaming attributes
- Loading branch information
1 parent
cfffb4f
commit 0e02a47
Showing
4 changed files
with
98 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
groups: | ||
- id: registry.vcs.deprecated | ||
type: attribute_group | ||
brief: > | ||
"Describes deprecated vcs attributes." | ||
attributes: | ||
- id: vcs.repository.ref.name | ||
type: string | ||
stability: experimental | ||
deprecated: 'Deprecated, use `vcs.ref.name` instead.' | ||
brief: > | ||
Deprecated, use `vcs.ref.name` instead. | ||
examples: ["my-feature-branch", "tag-1-test"] | ||
- id: vcs.repository.ref.type | ||
type: | ||
members: | ||
- id: branch | ||
value: branch | ||
brief: "[branch](https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddefbranchabranch)" | ||
stability: experimental | ||
- id: tag | ||
value: tag | ||
brief: "[tag](https://git-scm.com/docs/gitglossary#Documentation/gitglossary.txt-aiddeftagatag)" | ||
stability: experimental | ||
stability: experimental | ||
deprecated: 'Deprecated, use `vcs.ref.type` instead.' | ||
brief: > | ||
Deprecated, use `vcs.ref.type` instead. | ||
examples: ["branch", "tag"] | ||
- id: vcs.repository.ref.revision | ||
type: string | ||
stability: experimental | ||
deprecated: 'Deprecated, use `vcs.ref.revision` instead.' | ||
brief: > | ||
Deprecated, use `vcs.ref.revision` instead. | ||
examples: | ||
[ | ||
"9d59409acf479dfa0df1aa568182e43e43df8bbe28d60fcf2bc52e30068802cc", | ||
"main", | ||
"123", | ||
"HEAD", | ||
] | ||
- id: vcs.repository.change.title | ||
type: string | ||
stability: experimental | ||
deprecated: 'Deprecated, use `vcs.change.title` instead.' | ||
brief: > | ||
Deprecated, use `vcs.change.title` instead. | ||
examples: | ||
[ | ||
"Fixes broken thing", | ||
"feat: add my new feature", | ||
"[chore] update dependency", | ||
] | ||
- id: vcs.repository.change.id | ||
type: string | ||
stability: experimental | ||
deprecated: 'Deprecated, use `vcs.change.id` instead.' | ||
brief: > | ||
Deprecated, use `vcs.change.id` instead. | ||
examples: ["123"] |
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