Save commit message in DB and show in deployments list (#67)

* Display commit message in projects and deployments

* Handle if current deployment not present

* Rename types file

---------

Co-authored-by: neeraj <neeraj.rtly@gmail.com>
This commit is contained in:
2024-02-14 14:25:50 +05:30
committed by GitHub
co-authored by neeraj
parent adba64fd2b
commit db3b9148b6
29 changed files with 144 additions and 128 deletions
+2
View File
@@ -84,6 +84,7 @@ query ($organizationSlug: String!) {
status
updatedAt
commitHash
commitMessage
createdAt
environment
domain {
@@ -125,6 +126,7 @@ query ($projectId: String!) {
}
branch
commitHash
commitMessage
url
environment
isCurrent
+1
View File
@@ -62,6 +62,7 @@ export type Deployment = {
domain: Domain
branch: string
commitHash: string
commitMessage: string
url: string
environment: Environment
isCurrent: boolean