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
110 changes: 110 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
version: 2
updates:
# Backend dependencies
- package-ecosystem: "npm"
directory: "/server"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 3
reviewers:
- "gracetyy"
labels:
- "dependencies"
- "backend"
commit-message:
prefix: "chore(deps)"
include: "scope"
groups:
nestjs:
patterns:
- "@nestjs/*"
update-types:
- "minor"
- "patch"
typescript-eslint:
patterns:
- "@typescript-eslint/*"
- "typescript"
update-types:
- "minor"
- "patch"
dev-dependencies:
dependency-type: "development"
update-types:
- "minor"
- "patch"
production-dependencies:
dependency-type: "production"
update-types:
- "minor"
- "patch"

# Frontend dependencies
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 3
reviewers:
- "gracetyy"
labels:
- "dependencies"
- "frontend"
commit-message:
prefix: "chore(deps)"
include: "scope"
groups:
react:
patterns:
- "react"
- "react-dom"
- "react-router*"
- "@types/react*"
update-types:
- "minor"
- "patch"
ui-libraries:
patterns:
- "framer-motion"
- "@emotion/*"
- "tailwindcss"
update-types:
- "minor"
- "patch"
dev-dependencies:
dependency-type: "development"
update-types:
- "minor"
- "patch"
production-dependencies:
dependency-type: "production"
update-types:
- "minor"
- "patch"

# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
open-pull-requests-limit: 2
reviewers:
- "gracetyy"
labels:
- "dependencies"
- "ci/cd"
commit-message:
prefix: "chore(ci)"
groups:
all-actions:
patterns:
- "*"
update-types:
- "minor"
- "patch"
56 changes: 56 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
## Description
<!-- Provide a clear and concise description of the changes in this PR -->

## Type of Change
<!-- Mark the relevant option with an "x" -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update
- [ ] Refactoring (no functional changes)
- [ ] Performance improvement
- [ ] Security fix

## Changes Made
<!-- List the main changes made in this PR -->
-
-
-

## Testing
<!-- Describe the tests you ran to verify your changes -->
- [ ] Unit tests added/updated
- [ ] Integration tests added/updated
- [ ] E2E tests added/updated
- [ ] Manual testing performed
- [ ] All existing tests pass

## Test Coverage
<!-- If applicable, include test coverage statistics -->
- Lines: XX%
- Branches: XX%
- Functions: XX%

## Screenshots
<!-- If applicable, add screenshots to help explain your changes -->

## Checklist
- [ ] My code follows the project's style guidelines
- [ ] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published

## Related Issues
<!-- Link to related issues, if any -->
Closes #
Related to #

## Deployment Notes
<!-- Any special notes for deployment? -->

## Additional Context
<!-- Add any other context about the PR here -->
Loading