Skip to content

Fixed Coderabbit Validation Check #3361

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

Merged
merged 2 commits into from
Mar 15, 2025

Conversation

syedali237
Copy link
Contributor

@syedali237 syedali237 commented Mar 14, 2025

What kind of change does this PR introduce?

BugFix

Issue Number:

Fixes #3258

Snapshots/Videos:

N/A

If relevant, did you update the documentation?

N/A

Summary

Added retry mechanism in order to validate the approval

Does this PR introduce a breaking change?

No

Checklist

CodeRabbit AI Review

  • I have reviewed and addressed all critical issues flagged by CodeRabbit AI
  • I have implemented or provided justification for each non-critical suggestion
  • I have documented my reasoning in the PR comments where CodeRabbit AI suggestions were not implemented

Test Coverage

  • I have written tests for all new changes/features
  • I have verified that test coverage meets or exceeds 95%
  • I have run the test suite locally and all tests pass

Other information

Auto-docs are generated since unauthorized files are altered.

Have you read the contributing guide?

Summary by CodeRabbit

  • Chores
    • Streamlined pull request workflows by removing redundant steps and reorganizing processes for improved clarity.
    • Enhanced the review process with more robust approval checks—including a retry mechanism—for a more reliable and transparent validation experience.

@syedali237 syedali237 requested a review from palisadoes as a code owner March 14, 2025 12:03
Copy link

coderabbitai bot commented Mar 14, 2025

Important

Review skipped

Review was skipped due to path filters

⛔ Files ignored due to path filters (4)
  • docs/docs/docs/auto-schema/drizzle/enums/postAttachmentMimeType/variables/postAttachmentMimeTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/postAttachments/variables/postAttachmentsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/postAttachments/variables/postAttachmentsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePresignedUrlInput/variables/mutationCreatePresignedUrlInputSchema.md is excluded by !**/docs/docs/**

CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including **/dist/** will override the default block on the dist directory, by removing the pattern from both the lists.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

This pull request updates the GitHub Actions workflow and its associated approval script. The workflow file has been modified by removing the code coverage disable check step and reordering existing steps for clarity without changing functionality. The approval script has been refactored to include a new function, check_approval(), which encapsulates the logic for fetching and processing pull request reviews using the GitHub API. The script now includes additional debug logging and a retry mechanism for checking for approvals.

Changes

File(s) Change Summary
.../pull-request.yml Removed the code coverage disable check step and reformatted the checkout, changed files, and dependencies steps for clarity.
.../validate-coderabbit.sh Added a new function check_approval() that refactors review fetching, includes debug logging, and implements a retry mechanism for PR approvals.

Sequence Diagram(s)

sequenceDiagram
    participant Script
    participant GitHubAPI

    Script->>Script: Initiate check_approval()
    Script->>GitHubAPI: Request PR reviews (with PR number, repo, commit SHA)
    GitHubAPI-->>Script: Return raw review data
    alt Approval Found (coderabbitai[bot])
        Script->>Script: Log approval count and commit SHA
        Script->>Script: Print success message and proceed
    else Approval Not Found
        loop Up to 10 retries
            Script->>Script: Log retry attempt and wait 30 seconds
            Script->>GitHubAPI: Request PR reviews again
            GitHubAPI-->>Script: Return updated review data
        end
        Script->>Script: Print error message after max retries
    end
Loading

Possibly related PRs

Suggested labels

ignore-sensitive-files-pr

Suggested reviewers

  • palisadoes

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

Our Pull Request Approval Process

Thanks for contributing!

Testing Your Code

Remember, your PRs won't be reviewed until these criteria are met:

  1. We don't merge PRs with poor code quality.
    1. Follow coding best practices such that CodeRabbit.ai approves your PR.
  2. We don't merge PRs with failed tests.
    1. When tests fail, click on the Details link to learn more.
    2. Write sufficient tests for your changes (CodeCov Patch Test). Your testing level must be better than the target threshold of the repository
    3. Tests may fail if you edit sensitive files. Ask to add the ignore-sensitive-files-pr label if the edits are necessary.
  3. We cannot merge PRs with conflicting files. These must be fixed.

Our policies make our code better.

Reviewers

Do not assign reviewers. Our Queue Monitors will review your PR and assign them.
When your PR has been assigned reviewers contact them to get your code reviewed and approved via:

  1. comments in this PR or
  2. our slack channel

Reviewing Your Code

Your reviewer(s) will have the following roles:

  1. arbitrators of future discussions with other contributors about the validity of your changes
  2. point of contact for evaluating the validity of your work
  3. person who verifies matching issues by others that should be closed.
  4. person who gives general guidance in fixing your tests

CONTRIBUTING.md

Read our CONTRIBUTING.md file. Most importantly:

  1. PRs with issues not assigned to you will be closed by the reviewer
  2. Fix the first comment in the PR so that each issue listed automatically closes

Other

  1. 🎯 Please be considerate of our volunteers' time. Contacting the person who assigned the reviewers is not advised unless they ask for your input. Do not @ the person who did the assignment otherwise.
  2. Read the CONTRIBUTING.md file make

Copy link

codecov bot commented Mar 14, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 52.25%. Comparing base (9f66177) to head (f457894).
Report is 3 commits behind head on develop-postgres.

Additional details and impacted files
@@                Coverage Diff                @@
##           develop-postgres    #3361   +/-   ##
=================================================
  Coverage             52.25%   52.25%           
=================================================
  Files                   466      466           
  Lines                 35059    35059           
  Branches               1182     1182           
=================================================
  Hits                  18321    18321           
  Misses                16736    16736           
  Partials                  2        2           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🔭 Outside diff range comments (1)
.github/workflows/pull-request.yml (1)

257-261: 🧹 Nitpick (assertive)

Enhancement: Added GITHUB_SHA for Improved Traceability

The addition of GITHUB_SHA enriches the context available during the approval check, helping to accurately track which commit is under review. Just be mindful that any debug logging associated with this value does not inadvertently expose sensitive commit details in production logs.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2d0d513 and 12844d1.

⛔ Files ignored due to path filters (298)
  • docs/docs/docs/auto-schema/createServer/functions/createServer.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/advertisementAttachmentMimeType/variables/advertisementAttachmentMimeTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/advertisementType/variables/advertisementTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/agendaItemType/variables/agendaItemTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/chatMembershipRole/variables/chatMembershipRoleEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/commentVoteType/variables/commentVoteTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/eventAttachmentMimeType/variables/eventAttachmentMimeTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/familyMembershipRole/variables/familyMembershipRoleEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/imageMimeType/variables/imageMimeTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/iso3166Alpha2CountryCode/variables/iso3166Alpha2CountryCodeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/iso4217CurrencyCode/variables/iso4217CurrencyCodeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/iso639Set1LanguageCode/variables/iso639Set1LanguageCodeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/organizationMembershipRole/variables/organizationMembershipRoleEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/postAttachmentMimeType/variables/postAttachmentMimeTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/postVoteType/variables/postVoteTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/userEducationGrade/variables/userEducationGradeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/userEmploymentStatus/variables/userEmploymentStatusEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/userMaritalStatus/variables/userMaritalStatusEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/userNatalSex/variables/userNatalSexEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/userRole/variables/userRoleEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/venueAttachmentMimeType/variables/venueAttachmentMimeTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/videoMimeType/variables/videoMimeTypeEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/enums/volunteerGroupAssignmentInviteStatus/variables/volunteerGroupAssignmentInviteStatusEnum.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/actionCategories/variables/actionCategoriesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/actionCategories/variables/actionCategoriesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/actions/variables/actionsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/actions/variables/actionsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/advertisementAttachments/variables/advertisementAttachmentsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/advertisementAttachments/variables/advertisementAttachmentsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/advertisementAttachments/variables/advertisementAttachmentsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/advertisements/variables/advertisementsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/advertisements/variables/advertisementsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/advertisements/variables/advertisementsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/agendaFolders/variables/agendaFoldersTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/agendaFolders/variables/agendaFoldersTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/agendaFolders/variables/agendaFoldersTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/agendaItems/variables/agendaItemsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/agendaItems/variables/agendaItemsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/agendaItems/variables/agendaItemsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chatMemberships/variables/chatMembershipsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chatMemberships/variables/chatMembershipsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chatMemberships/variables/chatMembershipsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chatMessages/variables/chatMessagesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chatMessages/variables/chatMessagesTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chatMessages/variables/chatMessagesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chats/variables/chatsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chats/variables/chatsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/chats/variables/chatsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/commentVotes/variables/commentVotesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/commentVotes/variables/commentVotesTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/commentVotes/variables/commentVotesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/comments/variables/commentsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/comments/variables/commentsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/comments/variables/commentsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/communities/variables/communitiesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/communities/variables/communitiesTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/communities/variables/communitiesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/eventAttachments/variables/eventAttachmentsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/eventAttachments/variables/eventAttachmentsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/eventAttachments/variables/eventAttachmentsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/eventAttendances/variables/eventAttendancesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/eventAttendances/variables/eventAttendancesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/events/variables/eventsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/events/variables/eventsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/events/variables/eventsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/families/variables/familiesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/families/variables/familiesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/familyMemberships/variables/familyMembershipsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/familyMemberships/variables/familyMembershipsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/fundCampaignPledges/variables/fundCampaignPledgesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/fundCampaignPledges/variables/fundCampaignPledgesTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/fundCampaignPledges/variables/fundCampaignPledgesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/fundCampaigns/variables/fundCampaignsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/fundCampaigns/variables/fundCampaignsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/fundCampaigns/variables/fundCampaignsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/funds/variables/fundsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/funds/variables/fundsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/funds/variables/fundsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/organizationMemberships/variables/organizationMembershipsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/organizationMemberships/variables/organizationMembershipsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/organizationMemberships/variables/organizationMembershipsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/organizations/variables/organizationsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/organizations/variables/organizationsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/organizations/variables/organizationsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/postAttachments/variables/postAttachmentsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/postAttachments/variables/postAttachmentsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/postAttachments/variables/postAttachmentsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/postVotes/variables/postVotesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/postVotes/variables/postVotesTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/postVotes/variables/postVotesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/posts/variables/postsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/posts/variables/postsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/posts/variables/postsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/tagAssignments/variables/tagAssignmentsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/tagAssignments/variables/tagAssignmentsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/tagAssignments/variables/tagAssignmentsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/tagFolders/variables/tagFoldersTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/tagFolders/variables/tagFoldersTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/tagFolders/variables/tagFoldersTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/users/variables/usersTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/users/variables/usersTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/users/variables/usersTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venueAttachments/variables/venueAttachmentsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venueAttachments/variables/venueAttachmentsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venueAttachments/variables/venueAttachmentsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venueBookings/variables/venueBookingsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venueBookings/variables/venueBookingsTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venueBookings/variables/venueBookingsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venues/variables/venuesTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venues/variables/venuesTableInsertSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/venues/variables/venuesTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/volunteerGroupAssignments/variables/volunteerGroupAssignmentsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/volunteerGroupAssignments/variables/volunteerGroupAssignmentsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/volunteerGroups/variables/volunteerGroupsTable.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/drizzle/tables/volunteerGroups/variables/volunteerGroupsTableRelations.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/envConfigSchema/type-aliases/EnvConfig.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/envConfigSchema/variables/envConfigSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/envConfigSchema/variables/envSchemaAjv.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/builder/variables/builder.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/context/type-aliases/CurrentClient.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/context/type-aliases/ExplicitAuthenticationTokenPayload.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/context/type-aliases/ExplicitGraphQLContext.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/context/type-aliases/GraphQLContext.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/context/type-aliases/ImplicitMercuriusContext.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/AdvertisementType/variables/AdvertisementType.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/AgendaItemType/variables/AgendaItemType.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/ChatMembershipRole/variables/ChatMembershipRole.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/CommentVoteType/variables/CommentVoteType.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/Iso3166Alpha2CountryCode/variables/Iso3166Alpha2CountryCode.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/Iso4217CurrencyCode/variables/Iso4217CurrencyCode.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/Iso639Set1LanguageCode/variables/Iso639Set1LanguageCode.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/OrganizationMembershipRole/variables/OrganizationMembershipRole.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/PostVoteType/variables/PostVoteType.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/UserEducationGrade/variables/UserEducationGrade.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/UserEmploymentStatus/variables/UserEmploymentStatus.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/UserMaritalStatus/variables/UserMaritalStatus.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/UserNatalSex/variables/UserNatalSex.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/enums/UserRole/variables/UserRole.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateAdvertisementInput/variables/MutationCreateAdvertisementInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateAdvertisementInput/variables/mutationCreateAdvertisementInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateAgendaFolderInput/variables/MutationCreateAgendaFolderInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateAgendaFolderInput/variables/mutationCreateAgendaFolderInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateAgendaItemInput/variables/MutationCreateAgendaItemInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateAgendaItemInput/variables/mutationCreateAgendaItemInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateChatInput/variables/MutationCreateChatInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateChatInput/variables/mutationCreateChatInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateChatMembershipInput/variables/MutationCreateChatMembershipInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateChatMembershipInput/variables/mutationCreateChatMembershipInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateChatMessageInput/variables/MutationCreateChatMessageInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateChatMessageInput/variables/mutationCreateChatMessageInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateCommentInput/variables/MutationCreateCommentInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateCommentInput/variables/mutationCreateCommentInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateCommentVoteInput/variables/MutationCreateCommentVoteInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateCommentVoteInput/variables/mutationCreateCommentVoteInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateEventInput/variables/MutationCreateEventInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateEventInput/variables/mutationCreateEventInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateFundCampaignInput/variables/MutationCreateFundCampaignInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateFundCampaignInput/variables/mutationCreateFundCampaignInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateFundCampaignPledgeInput/variables/MutationCreateFundCampaignPledgeInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateFundCampaignPledgeInput/variables/mutationCreateFundCampaignPledgeInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateFundInput/variables/MutationCreateFundInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateFundInput/variables/mutationCreateFundInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateGetfileUrlInput/variables/MutationCreateGetfileUrlInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateGetfileUrlInput/variables/mutationCreateGetfileUrlInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateOrganizationInput/variables/MutationCreateOrganizationInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateOrganizationInput/variables/mutationCreateOrganizationInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateOrganizationMembershipInput/variables/MutationCreateOrganizationMembershipInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateOrganizationMembershipInput/variables/mutationCreateOrganizationMembershipInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePostInput/variables/MutationCreatePostInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePostInput/variables/mutationCreatePostInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePostVoteInput/variables/MutationCreatePostVoteInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePostVoteInput/variables/mutationCreatePostVoteInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePresignedUrlInput/variables/MutationCreatePresignedUrlInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreatePresignedUrlInput/variables/mutationCreatePresignedUrlInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateTagFolderInput/variables/MutationCreateTagFolderInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateTagFolderInput/variables/mutationCreateTagFolderInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateTagInput/variables/MutationCreateTagInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateTagInput/variables/mutationCreateTagInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateUserInput/variables/MutationCreateUserInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateUserInput/variables/mutationCreateUserInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateVenueBookingInput/variables/MutationCreateVenueBookingInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateVenueBookingInput/variables/mutationCreateVenueBookingInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateVenueInput/variables/MutationCreateVenueInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationCreateVenueInput/variables/mutationCreateVenueInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAdvertisementInput/variables/MutationDeleteAdvertisementInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAdvertisementInput/variables/mutationDeleteAdvertisementInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAgendaFolderInput/variables/MutationDeleteAgendaFolderInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAgendaFolderInput/variables/mutationDeleteAgendaFolderInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAgendaItemInput/variables/MutationDeleteAgendaItemInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteAgendaItemInput/variables/MutationDeleteAgendaItemInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatInput/variables/MutationDeleteChatInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatInput/variables/mutationDeleteChatInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatMembershipInput/variables/MutationDeleteChatMembershipInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatMembershipInput/variables/mutationDeleteChatMembershipInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatMessageInput/variables/MutationDeleteChatMessageInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteChatMessageInput/variables/mutationDeleteChatMessageInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteCommentInput/variables/MutationDeleteCommentInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteCommentInput/variables/mutationDeleteCommentInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteCommentVoteInput/variables/MutationDeleteCommentVoteInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteCommentVoteInput/variables/mutationDeleteCommentVoteInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteEventInput/variables/MutationDeleteEventInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteEventInput/variables/mutationDeleteEventInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundCampaignInput/variables/MutationDeleteFundCampaignInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundCampaignInput/variables/mutationDeleteFundCampaignInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundCampaignPledgeInput/variables/MutationDeleteFundCampaignPledgeInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundCampaignPledgeInput/variables/mutationDeleteFundCampaignPledgeInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundInput/variables/MutationDeleteFundInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteFundInput/variables/mutationDeleteFundInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteOrganizationInput/variables/MutationDeleteOrganizationInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteOrganizationInput/variables/mutationDeleteOrganizationInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteOrganizationMembershipInput/variables/MutationDeleteOrganizationMembershipInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteOrganizationMembershipInput/variables/mutationDeleteOrganizationMembershipInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeletePostInput/variables/MutationDeletePostInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeletePostInput/variables/mutationDeletePostInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeletePostVoteInput/variables/MutationDeletePostVoteInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeletePostVoteInput/variables/mutationDeletePostVoteInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteTagFolderInput/variables/MutationDeleteTagFolderInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteTagFolderInput/variables/mutationDeleteTagFolderInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteTagInput/variables/MutationDeleteTagInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteTagInput/variables/mutationDeleteTagInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteUserInput/variables/MutationDeleteUserInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteUserInput/variables/mutationDeleteUserInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteVenueBookingInput/variables/MutationDeleteVenueBookingInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteVenueBookingInput/variables/mutationDeleteVenueBookingInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteVenueInput/variables/MutationDeleteVenueInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationDeleteVenueInput/variables/mutationDeleteVenueInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationSignUpInput/variables/MutationSignUpInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationSignUpInput/variables/mutationSignUpInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateAdvertisementInput/variables/MutationUpdateAdvertisementInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateAdvertisementInput/variables/mutationUpdateAdvertisementInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateAgendaFolderInput/variables/MutationUpdateAgendaFolderInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateAgendaFolderInput/variables/mutationUpdateAgendaFolderInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateAgendaItemInput/variables/MutationUpdateAgendaItemInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateAgendaItemInput/variables/MutationUpdateAgendaItemInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateChatInput/variables/MutationUpdateChatInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateChatInput/variables/mutationUpdateChatInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateChatMembershipInput/variables/MutationUpdateChatMembershipInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateChatMembershipInput/variables/mutationUpdateChatMembershipInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateChatMessageInput/variables/MutationUpdateChatMessageInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateChatMessageInput/variables/mutationUpdateChatMessageInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCommentInput/variables/MutationUpdateCommentInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCommentInput/variables/mutationUpdateCommentInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCommentVoteInput/variables/MutationUpdateCommentVoteInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCommentVoteInput/variables/mutationUpdateCommentVoteInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCommunityInput/variables/MutationUpdateCommunityInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCommunityInput/variables/mutationUpdateCommunityInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCurrentUserInput/variables/MutationUpdateCurrentUserInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateCurrentUserInput/variables/mutationUpdateCurrentUserInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateEventInput/variables/MutationUpdateEventInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateEventInput/variables/mutationUpdateEventInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateFundCampaignInput/variables/MutationUpdateFundCampaignInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateFundCampaignInput/variables/mutationUpdateFundCampaignInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateFundCampaignPledgeInput/variables/MutationUpdateFundCampaignPledgeInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateFundCampaignPledgeInput/variables/mutationUpdateFundCampaignPledgeInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateFundInput/variables/MutationUpdateFundInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateFundInput/variables/mutationUpdateFundInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateOrganizationInput/variables/MutationUpdateOrganizationInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateOrganizationInput/variables/mutationUpdateOrganizationInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateOrganizationMembershipInput/variables/MutationUpdateOrganizationMembershipInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateOrganizationMembershipInput/variables/mutationUpdateOrganizationMembershipInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdatePostInput/variables/MutationUpdatePostInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdatePostInput/variables/mutationUpdatePostInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdatePostVoteInput/variables/MutationUpdatePostVoteInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdatePostVoteInput/variables/mutationUpdatePostVoteInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateTagFolderInput/variables/MutationUpdateTagFolderInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateTagFolderInput/variables/mutationUpdateTagFolderInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateTagInput/variables/MutationUpdateTagInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateTagInput/variables/mutationUpdateTagInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateUserInput/variables/MutationUpdateUserInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateUserInput/variables/mutationUpdateUserInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateVenueInput/variables/MutationUpdateVenueInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/MutationUpdateVenueInput/variables/mutationUpdateVenueInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryAdvertisementInput/variables/QueryAdvertisementInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryAdvertisementInput/variables/queryAdvertisementInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryAgendaFolderInput/variables/QueryAgendaFolderInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryAgendaFolderInput/variables/queryAgendaFolderInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryAgendaItemInput/variables/QueryAgendaItemInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryAgendaItemInput/variables/queryAgendaItemInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryChatInput/variables/QueryChatInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryChatInput/variables/queryChatInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryChatMessageInput/variables/QueryChatMessageInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryChatMessageInput/variables/queryChatMessageInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryCommentInput/variables/QueryCommentInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryCommentInput/variables/queryCommentInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryEventInput/variables/QueryEventInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryEventInput/variables/queryEventInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryFundCampaignInput/variables/QueryFundCampaignInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryFundCampaignInput/variables/queryFundCampaignInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryFundCampaignPledgeInput/variables/QueryFundCampaignPledgeInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryFundCampaignPledgeInput/variables/queryFundCampaignPledgeInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryFundInput/variables/QueryFundInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryFundInput/variables/queryFundInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryOrganizationInput/variables/MembersRoleWhereInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryOrganizationInput/variables/MembersWhereInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryOrganizationInput/variables/QueryOrganizationInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryOrganizationInput/variables/queryOrganizationInputSchema.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryPostInput/variables/QueryPostInput.md is excluded by !**/docs/docs/**
  • docs/docs/docs/auto-schema/graphql/inputs/QueryPostInput/variables/queryPostInputSchema.md is excluded by !**/docs/docs/**
📒 Files selected for processing (2)
  • .github/workflows/pull-request.yml (2 hunks)
  • .github/workflows/scripts/validate-coderabbit.sh (1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (1)

coderabbitai[bot]
coderabbitai bot previously approved these changes Mar 14, 2025
@Cioppolo14 Cioppolo14 removed the request for review from palisadoes March 14, 2025 12:36
@Cioppolo14 Cioppolo14 added the ignore-sensitive-files-pr The contributor has a legitimate reason for editiing protected files label Mar 14, 2025
@Cioppolo14
Copy link
Contributor

@syedali237 There are a lot of files being changed here. I think there should only be two, correct?

@Cioppolo14
Copy link
Contributor

@syedali237 Also, please do not add reviewers. We have a team that checks the PRs before reviewers are assigned.

@syedali237
Copy link
Contributor Author

@Cioppolo14 these auto docs files were generated while committing the changes as this PR was concerned with unauthorised files.

@palisadoes palisadoes merged commit 9f30509 into PalisadoesFoundation:develop-postgres Mar 15, 2025
17 checks passed
@coderabbitai coderabbitai bot mentioned this pull request Mar 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ignore-sensitive-files-pr The contributor has a legitimate reason for editiing protected files
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants