Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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 charts/gitops-runtime/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 0.1.72
appVersion: 2.0.0 # temporary TO BE REMOVED
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove this

description: A Helm chart for Codefresh gitops runtime
name: gitops-runtime
version: 0.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,8 @@ spec:
promoteAppWithPR:
properties:
appStatus:
description: APPStatus holds the status of the application
after the PR was merged
properties:
health:
description: Represents resource health status
Expand All @@ -563,6 +565,8 @@ spec:
- sync
type: object
commitInfo:
description: CommitInfo holds information about the commit
that was created when the PR was merged
properties:
commitAuthorId:
properties:
Expand All @@ -589,13 +593,66 @@ spec:
description: PromoteAppWithPRPhase
enum:
- Pending
- PRCreated
- Suspended
- Syncing
- Complete
type: string
prUrl:
format: uri
type: string
prInfo:
description: PRInfo holds information about the created
pull request
properties:
author:
description: Pull request author
type: string
avatarUrl:
description: Pull request author avatar url
type: string
baseBranch:
description: Pull request base branch
type: string
createdAt:
description: Pull request created at
format: date-time
type: string
description:
description: Pull request description
type: string
headBranch:
description: Pull request head branch
type: string
id:
description: Pull request id
type: integer
isMerged:
description: Is pull request merged
type: boolean
mergeCommitSha:
description: Commit sha from the pull request merge
maxLength: 40
minLength: 7
pattern: ^[A-Fa-f0-9]+$
type: string
repo:
description: Pull request repo name
type: string
state:
description: Pull request state
enum:
- Open
- Closed
type: string
title:
description: Pull request title
type: string
url:
description: Pull request url
format: uri
type: string
required:
- isMerged
- state
- url
type: object
required:
- phase
type: object
Expand Down