Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 184 for reviews (0.15 seconds)

  1. scripts/contributors.py

                if label.name == "lang-all":
                    is_lang = True
                    break
            for review in pr.reviews.nodes:
                if review.author:
                    authors[review.author.login] = review.author
                    if is_lang:
                        translation_reviewers[review.author.login] += 1
            if pr.state == "MERGED" and pr.author:
                if is_lang:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 12:34:01 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  2. PULL_REQUESTS_ETIQUETTE.md

    3. **Flow**:
       - Review promptly to avoid blocking progress.
       - Balance quality and speed—minor issues can be addressed later via issues, not PR blocks.
       - If unable to complete the review, tag another reviewer (e.g., `@username please take over`).
    
    4. **Shared Responsibility**:
       - All MinIO contributors are reviewers. The first commenter on a PR owns the review unless they delegate.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun May 25 16:32:03 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  3. scripts/label_approved.py

        reviews = list(pr.get_reviews())
        review_by_user: dict[str, PullRequestReview] = {}
        for review in reviews:
            if review.user.login in review_by_user:
                stored_review = review_by_user[review.user.login]
                if review.submitted_at >= stored_review.submitted_at:
                    review_by_user[review.user.login] = review
            else:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Jun 17 07:50:19 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  4. .github/PULL_REQUEST_TEMPLATE.md

    3. Ensure you have added or ran the appropriate tests for your PR: https://git.k8s.io/community/contributors/devel/sig-testing/testing.md
    4. If you want *faster* PR reviews, read how: https://git.k8s.io/community/contributors/guide/pull-requests.md#best-practices-for-faster-reviews
    5. If the PR is unfinished, see how to mark it: https://git.k8s.io/community/contributors/guide/pull-requests.md#marking-unfinished-pull-requests
    -->
    
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Fri Jun 06 14:40:00 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  5. .github/workflows/auto-assign-pr-to-author.yml

    name: 'Auto Assign PR to Author'
    on:
      pull_request:
        types: [opened]
    
    permissions: {}
    
    jobs:
      add-reviews:
        permissions:
          contents: read  # for kentaro-m/auto-assign-action to fetch config file
          pull-requests: write  # for kentaro-m/auto-assign-action to assign PR reviewers
        runs-on: ubuntu-latest
        steps:
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Nov 12 13:13:58 GMT 2024
    - 381 bytes
    - Click Count (0)
  6. architecture/standards/0009-use-american-english.md

    * **Easier onboarding**: New contributors have clear guidance on which spelling to use
    * **Better searchability**: Finding code and documentation becomes more predictable
    * **Reduced review friction**: Less time spent on spelling corrections during PR reviews
    * **Professional appearance**: Consistent APIs and documentation appear more polished
    * **Clearer contribution guidelines**: [CONTRIBUTING.md](../../CONTRIBUTING.md) now includes this requirement
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Nov 25 07:01:54 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  7. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    * During code reviews that introduce new APIs, reviewers need to be mindful that all new properties are implemented with lazy types.
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Oct 15 20:00:57 GMT 2024
    - 10K bytes
    - Click Count (0)
  8. scripts/notify_translations.py

        # Messages to create or check
        new_translation_message = f"Good news everyone! 😉 There's a new translation PR to be reviewed: #{pr.number} by @{pr.user.login}. 🎉 This requires 2 approvals from native speakers to be merged. 🤓"
        done_translation_message = f"~There's a new translation PR to be reviewed: #{pr.number} by @{pr.user.login}~ Good job! This is done. 🍰☕"
    
        # Normally only one language, but still
        for lang in langs:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 12.7K bytes
    - Click Count (0)
  9. docs/en/docs/fastapi-people.md

    {% endif %}
    
    {% endfor %}
    
    </div>
    
    ## Top Translation Reviewers
    
    These users are the **Top Translation Reviewers**. 🕵️
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Jan 28 20:34:56 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  10. docs/en/docs/management-tasks.md

    * Add the specific language label.
    * Add the label `awaiting-review`.
    
    The label `awaiting-review` is special, only used for translations. A GitHub Action will detect it, then it will read the language label, and it will update the GitHub Discussions managing the translations for that language to notify people that there's a new translation to review.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 14.2K bytes
    - Click Count (0)
Back to Top