-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump @npmcli/template-oss from 4.14.1 to 4.15.1 (#66)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: npm CLI robot <npm-cli+bot@github.com> Co-authored-by: Gar <gar+gh@danger.computer>
- Loading branch information
1 parent
9e87b58
commit 7bdc142
Showing
7 changed files
with
90 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,26 @@ | ||
--- | ||
_extends: '.github:npm-cli/settings.yml' | ||
# This file is automatically added by @npmcli/template-oss. Do not edit. | ||
|
||
repository: | ||
allow_merge_commit: false | ||
allow_rebase_merge: true | ||
allow_squash_merge: true | ||
squash_merge_commit_title: PR_TITLE | ||
squash_merge_commit_message: PR_BODY | ||
delete_branch_on_merge: true | ||
enable_automated_security_fixes: true | ||
enable_vulnerability_alerts: true | ||
|
||
branches: | ||
- name: main | ||
protection: | ||
required_status_checks: null | ||
enforce_admins: true | ||
required_pull_request_reviews: | ||
required_approving_review_count: 1 | ||
require_code_owner_reviews: true | ||
require_last_push_approval: true | ||
dismiss_stale_reviews: true | ||
restrictions: | ||
apps: [] | ||
users: [] | ||
teams: [ "cli-team" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
!/bin/ | ||
!/CHANGELOG* | ||
!/CODE_OF_CONDUCT.md | ||
!/CONTRIBUTING.md | ||
!/docs/ | ||
!/lib/ | ||
!/LICENSE* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!-- This file is automatically added by @npmcli/template-oss. Do not edit. --> | ||
|
||
# Contributing | ||
|
||
## Code of Conduct | ||
|
||
All interactions in the **npm** organization on GitHub are considered to be covered by our standard [Code of Conduct](https://docs.npmjs.com/policies/conduct). | ||
|
||
## Reporting Bugs | ||
|
||
Before submitting a new bug report please search for an existing or similar report. | ||
|
||
Use one of our existing issue templates if you believe you've come across a unique problem. | ||
|
||
Duplicate issues, or issues that don't use one of our templates may get closed without a response. | ||
|
||
## Pull Request Conventions | ||
|
||
### Commits | ||
|
||
We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). | ||
|
||
When opening a pull request please be sure that either the pull request title, or each commit in the pull request, has one of the following prefixes: | ||
|
||
- `feat`: For when introducing a new feature. The result will be a new semver minor version of the package when it is next published. | ||
- `fix`: For bug fixes. The result will be a new semver patch version of the package when it is next published. | ||
- `docs`: For documentation updates. The result will be a new semver patch version of the package when it is next published. | ||
- `chore`: For changes that do not affect the published module. Often these are changes to tests. The result will be *no* change to the version of the package when it is next published (as the commit does not affect the published version). | ||
|
||
### Test Coverage | ||
|
||
Pull requests made against this repo will run `npm test` automatically. Please make sure tests pass locally before submitting a PR. | ||
|
||
Every new feature or bug fix should come with a corresponding test or tests that validate the solutions. Testing also reports on code coverage and will fail if code coverage drops. | ||
|
||
### Linting | ||
|
||
Linting is also done automatically once tests pass. `npm run lintfix` will fix most linting errors automatically. | ||
|
||
Please make sure linting passes before submitting a PR. | ||
|
||
## What _not_ to contribute? | ||
|
||
### Dependencies | ||
|
||
It should be noted that our team does not accept third-party dependency updates/PRs. If you submit a PR trying to update our dependencies we will close it with or without a reference to these contribution guidelines. | ||
|
||
### Tools/Automation | ||
|
||
Our core team is responsible for the maintenance of the tooling/automation in this project and we ask contributors to not make changes to these when contributing (e.g. `.github/*`, `.eslintrc.json`, `.licensee.json`). Most of those files also have a header at the top to remind folks they are automatically generated. Pull requests that alter these will not be accepted. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters