Skip to content

Commit

Permalink
documentation: Change tag template link location for build triggers (…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
ibazulic authored Sep 14, 2023
1 parent abfde5b commit b42f2d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions buildtrigger/basehandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
"properties": {
"commit": {
"type": "string",
"description": "first 7 characters of the SHA-1 identifier for a git commit",
"description": "Full SHA-1 identifier of the commit",
"pattern": "^([A-Fa-f0-9]{7,})$",
},
"parsed_ref": {
Expand Down Expand Up @@ -138,7 +138,7 @@
"properties": {
"short_sha": {
"type": "string",
"description": "The short SHA for this git commit",
"description": "The short SHA for this git commit (7 characters)",
},
"url": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class DocumentationServiceImpl implements DocumentationService {
return `html/use_red_hat_quay/repository_notifications#${p['event']}`;
},
'notifications': 'html/use_red_hat_quay/repository_notifications',
'builds.tag-templating': 'https://github.com/quay/quay/blob/master/buildtrigger/basehandler.py#L81'
'builds.tag-templating': 'https://access.redhat.com/solutions/7033393'
};
}

Expand Down

0 comments on commit b42f2d7

Please sign in to comment.