Skip to content

Commit

Permalink
remove extra assignees from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
karanh37 committed Dec 12, 2024
1 parent 2a22fda commit 97551d1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 63 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,6 @@
"description": "Add the Reviewers to the assignees List.",
"type": "boolean",
"default": false
},
"extraAssignees": {
"description": "Manually add Specific Assignees.",
"type": "array",
"items": {
"$ref": "../../../../../type/entityReference.json"
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/


/**
/**
* Defines a Task for a given User to approve.
*/
export interface UserApprovalTask {
Expand Down Expand Up @@ -51,58 +49,5 @@ export interface Assignees {
* Add the Reviewers to the assignees List.
*/
addReviewers?: boolean;
/**
* Manually add Specific Assignees.
*/
extraAssignees?: EntityReference[];
[property: string]: any;
}

/**
* This schema defines the EntityReference type used for referencing an entity.
* EntityReference is used for capturing relationships from one entity to another. For
* example, a table has an attribute called database of type EntityReference that captures
* the relationship of a table `belongs to a` database.
*/
export interface EntityReference {
/**
* If true the entity referred to has been soft-deleted.
*/
deleted?: boolean;
/**
* Optional description of entity.
*/
description?: string;
/**
* Display Name that identifies this entity.
*/
displayName?: string;
/**
* Fully qualified name of the entity instance. For entities such as tables, databases
* fullyQualifiedName is returned in this field. For entities that don't have name hierarchy
* such as `user` and `team` this will be same as the `name` field.
*/
fullyQualifiedName?: string;
/**
* Link to the entity resource.
*/
href?: string;
/**
* Unique identifier that identifies an entity instance.
*/
id: string;
/**
* If true the relationship indicated by this entity reference is inherited from the parent
* entity.
*/
inherited?: boolean;
/**
* Name of the entity instance.
*/
name?: string;
/**
* Entity type/class name - Examples: `database`, `table`, `metrics`, `databaseService`,
* `dashboardService`...
*/
type: string;
}

0 comments on commit 97551d1

Please sign in to comment.