Skip to content

Commit 6733593

Browse files
add git templates
1 parent 295fed2 commit 6733593

File tree

4 files changed

+44
-0
lines changed

4 files changed

+44
-0
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
* @rashidakanchwala @ravi-kumar-pilla
2+
3+
*.py @rashidakanchwala @ravi-kumar-pilla
4+
*.md @rashidakanchwala @ravi-kumar-pilla @NeroOkwa
5+
6+
.gitignore @ravi-kumar-pilla
7+
CODEOWNERS @rashidakanchwala @ravi-kumar-pilla @NeroOkwa

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Description
2+
3+
<!-- Why was this PR created? -->
4+
5+
## Development notes
6+
7+
<!-- What have you changed? Consider adding a screenshot or GIF. -->
8+
9+
## QA notes
10+
11+
<!-- How has the expected behaviour changed? What testing strategies have you used? -->
12+
13+
## Checklist
14+
15+
- [ ] Opened this PR as a 'Draft Pull Request' if it is work-in-progress
16+
- [ ] Updated the documentation to reflect the code changes
17+
- [ ] Added new entries to the `RELEASE.md` file
18+
- [ ] Added tests to cover my changes

.github/dco.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
require:
2+
members: false

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "pip" # See documentation for possible values
9+
directory: "/package" # Location of package manifests
10+
schedule:
11+
interval: "monthly"
12+
versioning-strategy: increase-if-necessary
13+
ignore:
14+
- dependency-name: "types-*"
15+
labels:
16+
- "Python"
17+
- "dependencies"

0 commit comments

Comments
 (0)