Skip to content

Commit

Permalink
Add Codefresh to CiCd integrations (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
RonConfigu committed Dec 13, 2023
1 parent d5c06e9 commit 76b051c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ts/packages/lib/src/integrations/cicd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ export type CiCd =
| 'BitbucketPipelines'
| 'TeamCity'
| 'Buddy'
| 'Jenkins';
| 'Jenkins'
| 'Codefresh';

export const CI_CD_LABEL: Record<CiCd, string> = {
GitHubActions: 'GitHub Actions',
Expand All @@ -17,6 +18,7 @@ export const CI_CD_LABEL: Record<CiCd, string> = {
TeamCity: 'TeamCity',
Buddy: 'Buddy',
Jenkins: 'Jenkins',
Codefresh: 'Codefresh',
};
export const CI_CD_WEBSITE: Record<CiCd, string> = {
GitHubActions: 'https://github.com/features/actions',
Expand All @@ -27,6 +29,7 @@ export const CI_CD_WEBSITE: Record<CiCd, string> = {
TeamCity: 'https://www.jetbrains.com/teamcity/learn/',
Buddy: 'https://buddy.works/docs',
Jenkins: 'https://www.jenkins.io/',
Codefresh: 'https://codefresh.io/',
};

export const CI_CD_TYPE = Object.keys(CI_CD_LABEL) as CiCd[];

0 comments on commit 76b051c

Please sign in to comment.