Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CODEOWNERS and PULL_REQUEST_TEMPLATE files #487

Merged
merged 1 commit into from
Mar 22, 2024
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
20 changes: 20 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This document lists the code owners for iio-oscilloscope repo sources,
# being used whenever new Pull Requests are created.
# - People listed in CODEOWNERS are automatically added as reviewers to the
# PRs open to branches containing this file, depending on the touched folders.
# - In addition to Code Owners, other reviewers can be added.
# - There can be set different code owners for different branches.
# - PRs will require the approval of at least one code owner.
#
# For more details, you can refer to
# https://github.blog/2017-07-06-introducing-code-owners/
#
# The format of CODEOWNERS is: <pattern> + <mail address of one/more owners>
# In case of multiple matches, the last pattern matched will take precedence.

##### Global code owners (for folders with no later match) #####
* [email protected] [email protected] [email protected]

##### Code owners for CI related files and folders #####
/CI/ [email protected] [email protected] [email protected] [email protected] [email protected]
azure-pipelines.yml [email protected] [email protected] [email protected] [email protected] [email protected]
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 @@
## PR Description

- Please replace this comment with a summary of your changes, and add any context
necessary to understand them. List any dependencies required for this change.
- To check the checkboxes below, insert a 'x' between square brackets (without
any space), or simply check them after publishing the PR.
- If you changes include a breaking change, please specify dependent PRs in the
description and try to push all related PRs simultaneously.

## PR Type
- [ ] Bug fix (a change that fixes an issue)
- [ ] New feature (a change that adds new functionality)
- [ ] Breaking change (a change that affects other repos or cause CIs to fail)

## PR Checklist
- [ ] I have followed the coding standards and guidelines
- [ ] I have conducted a self-review of my own code changes
- [ ] I have commented new code, particulary complex or unclear areas
- [ ] I have checked in CI output that no new warnings/errors got introduced
- [ ] I have updated documentation accordingly (GitHub Pages, READMEs, etc)
Loading