Skip to content

Commit

Permalink
DEVPROD-5136: Deploy process fixes (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
sophstad authored Mar 27, 2024
1 parent dcbd1bf commit 6df1fad
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 31,307 deletions.
2 changes: 1 addition & 1 deletion apps/parsley/scripts/deploy/deploy-production.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const evergreenDeploy = async () => {
console.log(
green(
`Track deploy progress at ${underline(
"https://spruce.mongodb.com/commits/parsley?requester=git_tag_request",
"https://spruce.mongodb.com/commits/evergreen-ui?requester=git_tag_request",
)}`,
),
);
Expand Down
14 changes: 14 additions & 0 deletions apps/parsley/src/gql/generated/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ export type AbortInfo = {
user: Scalars["String"]["output"];
};

export enum AccessLevel {
Admin = "ADMIN",
Edit = "EDIT",
View = "VIEW",
}

/**
* Annotation models the metadata that a user can add to a task.
* It is used as a field within the Task type.
Expand Down Expand Up @@ -1845,6 +1851,14 @@ export type ProjectInput = {
workstationConfig?: InputMaybe<WorkstationConfigInput>;
};

export enum ProjectPermission {
Annotations = "ANNOTATIONS",
Logs = "LOGS",
Patches = "PATCHES",
Settings = "SETTINGS",
Tasks = "TASKS",
}

export type ProjectPermissions = {
__typename?: "ProjectPermissions";
edit: Scalars["Boolean"]["output"];
Expand Down
Loading

0 comments on commit 6df1fad

Please sign in to comment.