Skip to content

Commit b42f2d7

Browse files
authored
documentation: Change tag template link location for build triggers (PROJQUAY-6044) (quay#2234)
The documentation link on the build trigger tag template screen is currently pointing to the location of the `schema` directly in the code. This is not really useful or user friendly. This will repoint that documentation link to the KCS article written for this purpose.
1 parent abfde5b commit b42f2d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

buildtrigger/basehandler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"properties": {
9999
"commit": {
100100
"type": "string",
101-
"description": "first 7 characters of the SHA-1 identifier for a git commit",
101+
"description": "Full SHA-1 identifier of the commit",
102102
"pattern": "^([A-Fa-f0-9]{7,})$",
103103
},
104104
"parsed_ref": {
@@ -138,7 +138,7 @@
138138
"properties": {
139139
"short_sha": {
140140
"type": "string",
141-
"description": "The short SHA for this git commit",
141+
"description": "The short SHA for this git commit (7 characters)",
142142
},
143143
"url": {
144144
"type": "string",

static/js/services/documentation/documentation.service.impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class DocumentationServiceImpl implements DocumentationService {
1818
return `html/use_red_hat_quay/repository_notifications#${p['event']}`;
1919
},
2020
'notifications': 'html/use_red_hat_quay/repository_notifications',
21-
'builds.tag-templating': 'https://github.com/quay/quay/blob/master/buildtrigger/basehandler.py#L81'
21+
'builds.tag-templating': 'https://access.redhat.com/solutions/7033393'
2222
};
2323
}
2424

0 commit comments

Comments
 (0)