Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addAssignees (0.17 sec)

  1. .github/auto_assign.yml

    # Set to true to add reviewers to pull requests
    addReviewers: false
    
    # Set to true to add assignees to pull requests
    addAssignees: author
    
    # A number of assignees to add to the pull request
    # Set to 0 to add all of the assignees.
    # Uses numberOfReviewers if unset.
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Mar 08 03:48:52 GMT 2022
    - 286 bytes
    - Viewed (0)
  2. .github/workflows/trusted_partners.js

        labels: labels
      });
      if (resp_label.status >= 400) {
        console.log(resp_label);
        throw "Error adding labels to PR";
      }
      if (assignees.length > 0) {
        const resp_assign = await github.rest.issues.addAssignees({
          issue_number: context.issue.number,
          owner: context.repo.owner,
          repo: context.repo.repo,
          assignees: assignees
        });
        if (resp_assign.status >= 400) {
    JavaScript
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Feb 07 13:52:04 GMT 2023
    - 4.5K bytes
    - Viewed (0)
Back to top