fix: typo in contribution guidelines, update project metadata and pull_request_temp...md (#5010)

Co-authored-by: Timothy Carambat <rambat1010@gmail.com>
This commit is contained in:
Dipanshu Rawat
2026-02-18 22:42:22 +05:30
committed by GitHub
parent 40853e4e43
commit 114204be6e
3 changed files with 28 additions and 15 deletions

View File

@@ -94,9 +94,9 @@ The core library is written in Node.js. There are additional sub-repositories fo
Changes to the core AnythingLLM project are released through the `master` branch. When a PR is merged into `master`, a new version of the package is published to Docker and GitHub Container Registry under the `latest` tag. Changes to the core AnythingLLM project are released through the `master` branch. When a PR is merged into `master`, a new version of the package is published to Docker and GitHub Container Registry under the `latest` tag.
When a new version is released, the following steps are taken a new image is built and pushed to Docker Hub and GitHub Container Registry under the assoicated version tag. Version tags are of the format `v<major>.<minor>.<patch>` and are pinned code, while `latest` is the latest version of the code at any point in time. When a new version is released, the following steps are taken a new image is built and pushed to Docker Hub and GitHub Container Registry under the associated version tag. Version tags are of the format `v<major>.<minor>.<patch>` and are pinned code, while `latest` is the latest version of the code at any point in time.
### Desktop propogation ### Desktop propagation
Changes to the desktop app are downstream of the core AnythingLLM project. Releases of the desktop app are published at the same time as the core AnythingLLM project. Code from the core AnythingLLM project is copied into the desktop app into an Electron wrapper. The Electron wrapper that wraps around the core AnythingLLM project is **not** part of the core AnythingLLM project, but is maintained by the AnythingLLM team. Changes to the desktop app are downstream of the core AnythingLLM project. Releases of the desktop app are published at the same time as the core AnythingLLM project. Code from the core AnythingLLM project is copied into the desktop app into an Electron wrapper. The Electron wrapper that wraps around the core AnythingLLM project is **not** part of the core AnythingLLM project, but is maintained by the AnythingLLM team.

View File

@@ -6,6 +6,14 @@
"type": "module", "type": "module",
"author": "Timothy Carambat (Mintplex Labs)", "author": "Timothy Carambat (Mintplex Labs)",
"license": "MIT", "license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mintplex-labs/anything-llm.git"
},
"bugs": {
"url": "https://github.com/mintplex-labs/anything-llm/issues"
},
"homepage": "https://github.com/mintplex-labs/anything-llm#readme",
"engines": { "engines": {
"node": ">=18" "node": ">=18"
}, },

View File

@@ -3,34 +3,39 @@
<!-- For change type, change [ ] to [x]. --> <!-- For change type, change [ ] to [x]. -->
- [ ] ✨ feat - [ ] ✨ feat (New feature)
- [ ] 🐛 fix - [ ] 🐛 fix (Bug fix)
- [ ] ♻️ refactor - [ ] ♻️ refactor (Code refactoring without changing behavior)
- [ ] 💄 style - [ ] 💄 style (UI style changes)
- [ ] 🔨 chore - [ ] 🔨 chore (Build, CI, maintenance)
- [ ] 📝 docs - [ ] 📝 docs (Documentation updates)
### Relevant Issues ### Relevant Issues
<!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" -->
resolves #xxx resolves #
### Description
<!-- Describe the changes in this PR that are impactful to the repo. What problem does it solve? -->
### What is in this change? ### Visuals (if applicable)
<!-- Describe the changes in this PR that are impactful to the repo. --> <!-- Add screenshots or screen recordings to demonstrate the changes, especially for UI updates. -->
### Additional Information ### Additional Information
<!-- Add any other context about the Pull Request here that was not captured above. --> <!-- Add any other context about the Pull Request here that was not captured above. -->
### Developer Validations ### Developer Validations
<!-- All of the applicable items should be checked. --> <!-- All of the applicable items should be checked. -->
- [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] I ran `yarn lint` from the root of the repo & committed changes
- [ ] Relevant documentation has been updated - [ ] Relevant documentation has been updated (if applicable)
- [ ] I have tested my code functionality - [ ] I have tested my code functionality
- [ ] Docker build succeeds locally - [ ] Docker build succeeds locally