Skip to content

Commit

Permalink
chore(github): add new labels for breaking changes, features, and fix…
Browse files Browse the repository at this point in the history
…es to improve issue tracking

chore(pull_request_template): create a template to standardize pull request submissions and ensure necessary information is provided
chore(npmignore): add .npmignore file to exclude unnecessary files and directories from npm package distribution
  • Loading branch information
alisaitteke committed Nov 23, 2024
1 parent eccca20 commit 2abc13e
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,16 @@
description: This will not be worked on
- name: dependencies
color: 0366d6
description: Pull requests that update a dependency file
description: Pull requests that update a dependency file
- name: 'breaking'
color: 'FF0000'
description: 'Breaking changes (major version bump)'
- name: 'feature'
color: '00FF00'
description: 'New features (minor version bump)'
- name: 'fix'
color: 'FFA500'
description: 'Bug fixes (patch version bump)'
- name: 'dependencies'
color: '0366D6'
description: 'Dependencies updates'
20 changes: 20 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## Description
<!-- What does this PR do? -->

## Type of change
<!-- Please delete options that are not relevant -->
- [ ] Breaking change (major version)
- [ ] New feature (minor version)
- [ ] Bug fix (patch version)
- [ ] Documentation update
- [ ] Dependencies update

## Checklist
- [ ] I have added tests
- [ ] I have updated documentation
- [ ] I have assigned appropriate labels
- [ ] I have added the change to CHANGELOG.md
- [ ] All tests pass locally

## Related Issues
<!-- Link related issues here -->
10 changes: 10 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# .npmignore
src/__tests__/
.github/
.vscode/
coverage/
*.test.ts
*.spec.ts
tsconfig.json
.eslintrc
.prettierrc

0 comments on commit 2abc13e

Please sign in to comment.