Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
name: Checkout [master]
name: Checkout [main]
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Any feature that is part of the core project and does not deviate from what the
# Making Changes

- Fork the repository
- Create a new branch from master (usually) and with a meaningful name for your changes
- Create a new branch from main (usually) and with a meaningful name for your changes
- Make your changes
- Commit and push your change
- Please run `prettier` on all modified files prior to opening your pull request
- open a Pull Request for the master branch
- open a Pull Request for the main branch
Copy link

Copilot AI Apr 11, 2026

Choose a reason for hiding this comment

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

The list item starts with lowercase "open". For consistency with the surrounding imperative bullets, capitalize it (e.g., "Open a pull request...") and consider using consistent casing for "pull request" throughout the doc.

Suggested change
- open a Pull Request for the main branch
- Open a pull request for the main branch

Copilot uses AI. Check for mistakes.

# Re-generating parse after grammar change

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1013,4 +1013,4 @@ export interface WithDataCategoryCondition {

## Contributing

All contributions are welcome on the project. Please read the [contribution guidelines](https://github.com/jetstreamapp/soql-parser-js/blob/master/CONTRIBUTING.md).
All contributions are welcome on the project. Please read the [contribution guidelines](https://github.com/jetstreamapp/soql-parser-js/blob/main/CONTRIBUTING.md).
2 changes: 1 addition & 1 deletion docs/docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const soql = composeQuery({

## Contributing

All contributions are welcome on the project. Please read the [contribution guidelines](https://github.com/paustint/soql-parser-js/blob/master/CONTRIBUTING.md).
All contributions are welcome on the project. Please read the [contribution guidelines](https://github.com/paustint/soql-parser-js/blob/main/CONTRIBUTING.md).
Copy link

Copilot AI Apr 11, 2026

Choose a reason for hiding this comment

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

This link points to the paustint/soql-parser-js repository, but this package/repo identifies as jetstreamapp/soql-parser-js (see package.json repository URL). Update the contribution-guidelines link to the correct repository (or use a relative CONTRIBUTING.md link) so contributors don’t land on the wrong project.

Suggested change
All contributions are welcome on the project. Please read the [contribution guidelines](https://github.com/paustint/soql-parser-js/blob/main/CONTRIBUTING.md).
All contributions are welcome on the project. Please read the [contribution guidelines](./CONTRIBUTING.md).

Copilot uses AI. Check for mistakes.

## Data Models

Expand Down
Loading