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

fix(codeowners): Clean up CODEOWNERS #76498

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Aug 22, 2024

  1. fix(codeowners): Clean up CODEOWNERS

    The result of a hackweek project which didn't make it too far...
    
    More details below, in general these fixes fall into two buckets:
    - Duplicate patterns: Later rules override earlier rules so the first
      ones were being ignored.
    - Missing files: Rules which never applied to any files. These files
      were some combination of moved and deleted.
    
    ```
    $ codeberg lint ../sentry | grep -v NoUnownedFiles
    [NoMissingFiles] 19: /src/sentry/utils/snql.py does not match any files
    [NoMissingFiles] 60: /src/sentry/web/frontend/auth_organization_id_login.py does not match any files
    [NoMissingFiles] 98: /src/sentry/api/endpoints/relocation/ does not match any files
    [NoMissingFiles] 99: /src/sentry/api/serialiers/models/relocation/ does not match any files
    [NoMissingFiles] 100: /src/sentry/models/relocation/ does not match any files
    [NoMissingFiles] 104: /tests/sentry/api/endpoints/relocation does not match any files
    [NoMissingFiles] 106: /tests/sentry/api/serializer/test_relocation.py does not match any files
    [NoMissingFiles] 118: .vercel.json does not match any files
    [NoMissingFiles] 119: /.githib/worksflows/frontend.yml does not match any files
    [NoMissingFiles] 146: /src/sentry/utils/monitors.py does not match any files
    [NoMissingFiles] 147: /tests/sentry/utils/test_monitors.py does not match any files
    [NoMissingFiles] 162: /src/sentry/api/endpoints/internal/integration_proxy.py does not match any files
    [NoMissingFiles] 164: /src/sentry/models/outbox.py does not match any files
    [NoMissingFiles] 165: /src/sentry/tasks/deliver_from_outbox.py does not match any files
    [NoMissingFiles] 225: /tests/snuba/api/endpoints/test_organization_events_trends_v2.py does not match any files
    [NoMissingFiles] 313: /src/sentry/utils/profiling.py does not match any files
    [NoMissingFiles] 368: /src/sentry/tasks/weekly_reports.py does not match any files
    [NoMissingFiles] 390: /src/sentry/models/organizationoption.py does not match any files
    [NoMissingFiles] 392: /src/sentry/models/projectoption.py does not match any files
    [NoDuplicatePatterns] 412: /src/sentry/web/frontend/auth_login.py duplicated on line 58
    [NoMissingFiles] 421: /tests/sentry/api/test_scim*.py does not match any files
    [NoMissingFiles] 445: /tests/sentry/api/endpoints/test_projects_metrics_visibility.py does not match any files
    [NoMissingFiles] 451: /src/sentry/api/endpoints/organization_ddm.py does not match any files
    [NoMissingFiles] 452: /tests/sentry/api/endpoints/test_organization_ddm_meta.py does not match any files
    [NoMissingFiles] 457: /src/sentry/api/endpoints/projects_metrics.py does not match any files
    [NoDuplicatePatterns] 477: /src/sentry/snuba/metrics/ duplicated on line 27
    [NoMissingFiles] 482: /static/app/actionCreators/metrics.spec.tsx does not match any files
    [NoMissingFiles] 492: /static/app/views/performance/landing/dynamicSamplingMetricsAccuracy.spec.tsx does not match any files
    [NoMissingFiles] 493: /static/app/views/performance/landing/dynamicSamplingMetricsAccuracyAlert.tsx does not match any files
    [NoMissingFiles] 554: /static/app/components/modals/autofixSetupModal.spec.tsx does not match any files
    [NoMissingFiles] 555: /static/app/components/modals/autofixSetupModal.tsx does not match any files
    [NoMissingFiles] 568: /src/sentry/tasks/low_priority_symbolication.py does not match any files
    [NoMissingFiles] 570: /tests/sentry/tasks/test_low_priority_symbolication.py does not match any files
    [NoMissingFiles] 571: /src/sentry/tasks/reprocessing.py does not match any files
    [NoMissingFiles] 580: /src/sentry/tasks/invite_missing_org_members.py does not match any files
    [NoMissingFiles] 582: /src/sentry/tasks/integrations/github/pr_comment.py does not match any files
    ```
    mrduncan committed Aug 22, 2024
    Configuration menu
    Copy the full SHA
    3c2e416 View commit details
    Browse the repository at this point in the history