Skip to content
Merged
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
26 changes: 22 additions & 4 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,26 +1,44 @@
# Lines starting with '#' are comments.

#

# GUIDELINES:

# Each line is a file pattern followed by one or more owners.

# Owners bear a responsibility to the organization and the users of this

# application. Repository administrators have the ability to merge pull

# requests that have not yet received the requisite reviews as outlined

# in this file. Do not force merge any PR without confidence that it

# follows all policies or without full understanding of the impact of

# those changes on build, release and publishing outcomes.

#

# The CODEOWNERS file constitutes an agreement amongst organisation

# admins and maintainers to restrict approval capabilities to a subset

# of contributors. Modifications to this file result in a modification of

# that agreement and can only be approved by those with the knowledge

# and responsibility to publish libraries under the MetaMask name.

# Fallback for all other files
* @MetaMask/web3auth-admins

- @MetaMask/Web3Auth-Admins

# Product code
src/ @MetaMask/web3auth-product
test/ @MetaMask/web3auth-product

src/ @MetaMask/Web3Auth-Product
test/ @MetaMask/Web3Auth-Product

# Most restrictive — last match wins
.github/CODEOWNERS @MetaMask/web3auth-admins

.github/CODEOWNERS @MetaMask/Web3Auth-Admins
29 changes: 29 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
## Jira Link

<!-- Link to the Jira ticket (if applicable) -->

## Description

<!-- Describe your changes in detail -->

## How has this been tested?

<!-- Please describe how you tested your changes -->

## Screenshots (if appropriate)

<!-- Add screenshots if UI changes are involved -->

## Types of changes

- [ ] 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)

## Checklist

- [ ] My code follows the code style of this project. (run lint)
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly.
- [ ] I have added tests to cover my changes.
- [ ] All new and existing tests passed.
Loading