Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add assignee to the document decision webhook #2150

Merged
merged 2 commits into from
Mar 5, 2024
Merged

Add assignee to the document decision webhook #2150

merged 2 commits into from
Mar 5, 2024

Conversation

MatanYadaev
Copy link
Collaborator

@MatanYadaev MatanYadaev commented Mar 4, 2024

Type

enhancement


Description

  • Added assignee information to the document changed webhook payload, allowing for more detailed event data.
  • Introduced assignee field in IWorkflowContextChangedEventData interface to support this new data.
  • Enhanced the updateStateById method in WorkflowRuntimeDataRepository to support inclusion of related entities, specifically assignee.
  • Updated WorkflowService methods to include assignee information when emitting workflow.context.changed events and when fetching workflow runtime data.

Changes walkthrough

Relevant files
Enhancement
document-changed-webhook-caller.ts
Add Assignee Information to Webhook Payload                           

services/workflows-service/src/events/document-changed-webhook-caller.ts

  • Added assignee information to the document changed webhook payload.
  • +8/-0     
    index.ts
    Extend Event Data Interface with Assignee Field                   

    services/workflows-service/src/workflow/types/index.ts

  • Introduced assignee field in IWorkflowContextChangedEventData
    interface.
  • +1/-0     
    workflow-runtime-data.repository.ts
    Enhance Update Method to Support Related Entities Inclusion

    services/workflows-service/src/workflow/workflow-runtime-data.repository.ts

  • Modified updateStateById method to accept include parameter.
  • Enhanced method to include related entities based on the include
    parameter.
  • +10/-3   
    workflow.service.ts
    Update Workflow Service to Include Assignee in Events       

    services/workflows-service/src/workflow/workflow.service.ts

  • Updated updateStateById call to include assignee data.
  • Emit workflow.context.changed event with assignee information.
  • Adjusted method calls to include assignee information when fetching
    runtime data.
  • +11/-5   

    PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    Copy link

    changeset-bot bot commented Mar 4, 2024

    ⚠️ No Changeset found

    Latest commit: c71006d

    Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

    This PR includes no changesets

    When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

    Click here to learn what changesets are, and how to add one.

    Click here if you're a maintainer who wants to add a changeset to this PR

    @github-actions github-actions bot added the enhancement New feature or request label Mar 4, 2024
    Copy link
    Contributor

    github-actions bot commented Mar 4, 2024

    PR Description updated to latest commit (f2830cf)

    1 similar comment
    Copy link
    Contributor

    github-actions bot commented Mar 4, 2024

    PR Description updated to latest commit (f2830cf)

    Copy link
    Contributor

    github-actions bot commented Mar 4, 2024

    PR Review

    (Review updated until commit f2830cf)

    ⏱️ Estimated effort to review [1-5]

    3, because the PR involves changes across multiple files and layers of the application, including event data structure modifications, database interaction updates, and service logic enhancements. Understanding the implications of these changes requires a good grasp of the system's architecture and the workflow functionality.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Possible Bug: The nullability of assignee in the event payload might not be handled properly in all consuming services or components. If any consumer expects assignee to always be present, this could lead to runtime errors.

    Data Consistency: The changes include fetching assignee information and including it in various payloads. It's crucial to ensure that the assignee data is consistent across all instances where it's used, especially in asynchronous operations.

    🔒 Security concerns

    No

    Code feedback:
    relevant fileservices/workflows-service/src/events/document-changed-webhook-caller.ts
    suggestion      

    Consider validating the assignee object's properties (e.g., id, firstName, lastName, email) to ensure they are not null or undefined before adding them to the webhook payload. This can prevent potential issues with consumers of the webhook that may not handle missing properties well. [important]

    relevant lineassignee: data.assignee

    relevant fileservices/workflows-service/src/workflow/workflow-runtime-data.repository.ts
    suggestion      

    When updating the workflow runtime data to include related entities like assignee, ensure that any changes to the assignee data model are reflected in the include parameter. This might require updating the type definition for Prisma.WorkflowRuntimeDataInclude to ensure type safety. [medium]

    relevant lineinclude?: Prisma.WorkflowRuntimeDataInclude;

    relevant fileservices/workflows-service/src/workflow/workflow.service.ts
    suggestion      

    After updating the workflow state and potentially resolving it, consider adding a check to verify that the assignee information is correctly updated and included in the updatedResult. This can help catch any issues with the update operation or the inclusion of related entities early. [medium]

    relevant lineinclude: { assignee: true },

    relevant fileservices/workflows-service/src/workflow/types/index.ts
    suggestion      

    Ensure that the new assignee field in IWorkflowContextChangedEventData is properly documented and that all consumers of this interface are aware of the potential nullability of this field. This can help prevent null reference errors in parts of the application that consume this data. [medium]

    relevant lineassignee: User | null;


    ✨ Review tool usage guide:

    Overview:
    The review tool scans the PR code changes, and generates a PR review. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
    When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:

    /review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
    

    With a configuration file, use the following template:

    [pr_reviewer]
    some_config1=...
    some_config2=...
    
    Utilizing extra instructions

    The review tool can be configured with extra instructions, which can be used to guide the model to a feedback tailored to the needs of your project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify the relevant sub-tool, and the relevant aspects of the PR that you want to emphasize.

    Examples for extra instructions:

    [pr_reviewer] # /review #
    extra_instructions="""
    In the 'possible issues' section, emphasize the following:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    How to enable\disable automation
    • When you first install PR-Agent app, the default mode for the review tool is:
    pr_commands = ["/review", ...]
    

    meaning the review tool will run automatically on every PR, with the default configuration.
    Edit this field to enable/disable the tool, or to change the used configurations

    Auto-labels

    The review tool can auto-generate two specific types of labels for a PR:

    • a possible security issue label, that detects possible security issues (enable_review_labels_security flag)
    • a Review effort [1-5]: x label, where x is the estimated effort to review the PR (enable_review_labels_effort flag)
    Extra sub-tools

    The review tool provides a collection of possible feedbacks about a PR.
    It is recommended to review the possible options, and choose the ones relevant for your use case.
    Some of the feature that are disabled by default are quite useful, and should be considered for enabling. For example:
    require_score_review, require_soc2_ticket, and more.

    Auto-approve PRs

    By invoking:

    /review auto_approve
    

    The tool will automatically approve the PR, and add a comment with the approval.

    To ensure safety, the auto-approval feature is disabled by default. To enable auto-approval, you need to actively set in a pre-defined configuration file the following:

    [pr_reviewer]
    enable_auto_approval = true
    

    (this specific flag cannot be set with a command line argument, only in the configuration file, committed to the repository)

    You can also enable auto-approval only if the PR meets certain requirements, such as that the estimated_review_effort is equal or below a certain threshold, by adjusting the flag:

    [pr_reviewer]
    maximal_review_effort = 5
    
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the review usage page for a comprehensive guide on using this tool.

    Copy link
    Contributor

    github-actions bot commented Mar 4, 2024

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Maintainability
    Use a utility function to construct the assignee object.

    Consider using a utility function to construct the assignee object to avoid code
    duplication and improve maintainability.

    services/workflows-service/src/events/document-changed-webhook-caller.ts [180-186]

    -assignee: data.assignee
    -  ? {
    -      id: data.assignee.id,
    -      firstName: data.assignee.firstName,
    -      lastName: data.assignee.lastName,
    -      email: data.assignee.email,
    -    }
    -  : null,
    +assignee: constructAssigneeObject(data.assignee),
     
    Possible issue
    Provide a default value for the include parameter.

    Ensure that the include parameter has a default value to avoid potential issues when it's
    not provided.

    services/workflows-service/src/workflow/workflow-runtime-data.repository.ts [157]

    -include = undefined,
    +include = {},
     
    Best practice
    Ensure safety when accessing potentially null properties.

    Use TypeScript's non-null assertion operator (!) or optional chaining (?) when accessing
    assignee to ensure safety in case it's null.

    services/workflows-service/src/workflow/workflow.service.ts [1172]

    -assignee: updatedResult.assignee,
    +assignee: updatedResult.assignee!,
     
    Define the assignee type explicitly for better type safety.

    For better type safety, explicitly define the User type or interface expected for assignee
    instead of using a generic User | null.

    services/workflows-service/src/workflow/types/index.ts [62]

    -assignee: User | null;
    +assignee: { id: string; firstName: string; lastName: string; email: string; } | null;
     
    Enhancement
    Check for null assignee before emitting the event.

    Consider checking if assignee is not null before emitting the event to ensure that the
    event data is always consistent.

    services/workflows-service/src/workflow/workflow.service.ts [1170-1175]

    -this.workflowEventEmitter.emit('workflow.context.changed', {
    +if (updatedResult.assignee) {
    +  this.workflowEventEmitter.emit('workflow.context.changed', {
     

    ✨ Improve tool usage guide:

    Overview:
    The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.
    When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:

    /improve --pr_code_suggestions.some_config1=... --pr_code_suggestions.some_config2=...
    

    With a configuration file, use the following template:

    [pr_code_suggestions]
    some_config1=...
    some_config2=...
    
    Enabling\disabling automation

    When you first install the app, the default mode for the improve tool is:

    pr_commands = ["/improve --pr_code_suggestions.summarize=true", ...]
    

    meaning the improve tool will run automatically on every PR, with summarization enabled. Delete this line to disable the tool from running automatically.

    Utilizing extra instructions

    Extra instructions are very important for the improve tool, since they enable to guide the model to suggestions that are more relevant to the specific needs of the project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify relevant aspects that you want the model to focus on.

    Examples for extra instructions:

    [pr_code_suggestions] # /improve #
    extra_instructions="""
    Emphasize the following aspects:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    A note on code suggestions quality
    • While the current AI for code is getting better and better (GPT-4), it's not flawless. Not all the suggestions will be perfect, and a user should not accept all of them automatically.
    • Suggestions are not meant to be simplistic. Instead, they aim to give deep feedback and raise questions, ideas and thoughts to the user, who can then use his judgment, experience, and understanding of the code base.
    • Recommended to use the 'extra_instructions' field to guide the model to suggestions that are more relevant to the specific needs of the project, or use the custom suggestions 💎 tool
    • With large PRs, best quality will be obtained by using 'improve --extended' mode.
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the improve usage page for a more comprehensive guide on using this tool.

    Copy link
    Contributor

    github-actions bot commented Mar 4, 2024

    Persistent review updated to latest commit f2830cf

    Copy link
    Contributor

    github-actions bot commented Mar 4, 2024

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Maintainability
    Use a utility function to transform the assignee object.

    Consider using a utility function to handle the transformation of the assignee object.
    This will improve code maintainability and readability by centralizing the logic for
    creating the assignee object structure.

    services/workflows-service/src/events/document-changed-webhook-caller.ts [180-186]

    -assignee: data.assignee
    -  ? {
    -      id: data.assignee.id,
    -      firstName: data.assignee.firstName,
    -      lastName: data.assignee.lastName,
    -      email: data.assignee.email,
    -    }
    -  : null,
    +assignee: transformAssignee(data.assignee),
     
    Abstract fetching runtimeData with assignee into a separate method.

    To enhance code readability and maintainability, consider abstracting the logic of
    fetching runtimeData with the assignee included into a separate method. This will make the
    code cleaner and easier to understand.

    services/workflows-service/src/workflow/workflow.service.ts [2183-2187]

    -const runtimeData = (await this.workflowRuntimeDataRepository.findById(
    -    workflowRuntimeId,
    -    { include: { assignee: true } },
    -    [projectId],
    -)) as WorkflowRuntimeData & { assignee: User | null };
    +const runtimeData = await this.getWorkflowRuntimeDataWithAssignee(workflowRuntimeId, projectId);
     
    Possible issue
    Verify the User type includes all used fields.

    Ensure that the User type includes all necessary fields (id, firstName, lastName, email)
    as used in the document-changed-webhook-caller.ts file. This is to maintain consistency
    and avoid potential runtime errors due to missing fields.

    services/workflows-service/src/workflow/types/index.ts [62]

    -assignee: User | null;
    +// Ensure User type definition includes: id, firstName, lastName, email
     
    Verify updateStateById correctly populates the assignee field.

    When casting the result of updateStateById to include the assignee, ensure that the
    WorkflowRuntimeDataRepository method is correctly populating the assignee field to avoid
    potential runtime errors.

    services/workflows-service/src/workflow/workflow.service.ts [1146-1156]

    -const updatedResult = (await this.workflowRuntimeDataRepository.updateStateById(
    -    runtimeData.id,
    -    {
    -      data: {
    -        ...data,
    -        resolvedAt: isResolved ? new Date().toISOString() : null,
    -      },
    -      include: { assignee: true },
    -    },
    -    transaction,
    -)) as WorkflowRuntimeData & { assignee: User | null };
    +// Ensure that updateStateById method correctly populates the assignee field
     
    Best practice
    Explicitly specify the return type of updateStateById.

    Consider specifying the return type of updateStateById explicitly to improve code
    readability and ensure type safety. This will help developers understand what to expect
    from the method without diving into its implementation.

    services/workflows-service/src/workflow/workflow-runtime-data.repository.ts [153-163]

     async updateStateById(
       id: string,
       {
         data,
         include = undefined,
       }: {
         data: Prisma.WorkflowRuntimeDataUncheckedUpdateInput;
         include?: Prisma.WorkflowRuntimeDataInclude;
       },
       transaction: PrismaTransaction,
    -) {
    +): Promise<WorkflowRuntimeData & { assignee?: User | null }> {
     

    ✨ Improve tool usage guide:

    Overview:
    The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.
    When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:

    /improve --pr_code_suggestions.some_config1=... --pr_code_suggestions.some_config2=...
    

    With a configuration file, use the following template:

    [pr_code_suggestions]
    some_config1=...
    some_config2=...
    
    Enabling\disabling automation

    When you first install the app, the default mode for the improve tool is:

    pr_commands = ["/improve --pr_code_suggestions.summarize=true", ...]
    

    meaning the improve tool will run automatically on every PR, with summarization enabled. Delete this line to disable the tool from running automatically.

    Utilizing extra instructions

    Extra instructions are very important for the improve tool, since they enable to guide the model to suggestions that are more relevant to the specific needs of the project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify relevant aspects that you want the model to focus on.

    Examples for extra instructions:

    [pr_code_suggestions] # /improve #
    extra_instructions="""
    Emphasize the following aspects:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    A note on code suggestions quality
    • While the current AI for code is getting better and better (GPT-4), it's not flawless. Not all the suggestions will be perfect, and a user should not accept all of them automatically.
    • Suggestions are not meant to be simplistic. Instead, they aim to give deep feedback and raise questions, ideas and thoughts to the user, who can then use his judgment, experience, and understanding of the code base.
    • Recommended to use the 'extra_instructions' field to guide the model to suggestions that are more relevant to the specific needs of the project, or use the custom suggestions 💎 tool
    • With large PRs, best quality will be obtained by using 'improve --extended' mode.
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the improve usage page for a more comprehensive guide on using this tool.

    @MatanYadaev MatanYadaev merged commit 48c6b35 into dev Mar 5, 2024
    9 checks passed
    @MatanYadaev MatanYadaev deleted the bal-1593 branch March 5, 2024 10:15
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    2 participants