Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
IMAGE_REGISTRY_QUAY: quay.io/fedoraci/ciboard
USER_QUAY: fedoraci+ciboard_github_ci
name: Build and push image
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:

- name: Log in to the GitHub Container registry
Expand Down
2 changes: 1 addition & 1 deletion src/components/PageHelp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const Help = () => (
<p className="padding-left-20">
<CodeBlockCode id="code-content">
{`query brew {
koji_build_tags_by_nvr(nvr: $NVR, instance: rh|fp|cs){
koji_build_tags_by_nvr(nvr: $NVR, instance: rh|fp|cs|pn){
arches
id
locked
Expand Down
6 changes: 6 additions & 0 deletions src/config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ export const config = {
rh: {
webUrl: 'https://brewweb.engineering.redhat.com/brew',
},
pn: {
webUrl: 'https://brewweb.engineering.redhat.com/brew',
},
},
mbs: {
cs: {
Expand All @@ -62,6 +65,9 @@ export const config = {
rh: {
webUrl: 'https://mbsweb.engineering.redhat.com/mbs-ui/',
},
pn: {
webUrl: 'https://mbsweb.engineering.redhat.com/mbs-ui/',
},
},
waiverdb: {
url: 'https://waiverdb.engineering.redhat.com',
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ export type ComponentMapping = {
/**
* GraphQL KojiInstanceInputType
*/
export type KojiInstance = 'cs' | 'fp' | 'rh';
export type KojiInstance = 'cs' | 'fp' | 'rh' | 'pn' ;
/**
* GraphQL DistGitInstanceInputType
*/
Expand Down
4 changes: 4 additions & 0 deletions src/utils/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,8 @@ export const mkLinkPkgsDevelFromSource = (
switch (instance) {
case 'cs':
return `https://gitlab.com/redhat/centos-stream/${namespace}/${name}/-/commit/${commit}`;
case 'pn':
return `https://gitlab.com/redhat/rhel/${namespace}/${name}/-/commit/${commit}`;
case 'fp':
return `https://src.fedoraproject.org/${namespace}/${name}/c/${commit}`;
case 'rh':
Expand All @@ -407,6 +409,8 @@ export const mkLinkFileInGit = (
switch (instance) {
case 'cs':
return `https://gitlab.com/redhat/centos-stream/${namespace}/${repoName}/-/blob/${commit}/${fileName}`;
case 'pn':
return `https://gitlab.com/redhat/rhel/${namespace}/${repoName}/-/blob/${commit}/${fileName}`;
case 'fp':
return `https://src.fedoraproject.org/${namespace}/${repoName}/blob/${commit}/f/${fileName}`;
case 'rh':
Expand Down