Skip to content

Commit 449d994

Browse files
committed
feat: add PR template and dependabot workflow;
1 parent 142df86 commit 449d994

2 files changed

Lines changed: 42 additions & 0 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<!-- 🚨Please create your PR to merge code from your branch to `dev` branch here, rather than `main`. -->
2+
3+
# What does this PR do?
4+
5+
<!--
6+
Congrats! You've made it this far! You're not quite done yet though.
7+
8+
Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully reflects the extent of your awesome contribution 😉.
9+
10+
Then, please replace this with a description of the change and which issue is fixed (if applicable). Please also include relevant motivation and context. List any dependencies (if any) that are required for this change.
11+
12+
Once you're done, I will review your PR shortly. I may suggest changes to make the code even better 🤝.
13+
-->
14+
15+
<!-- Remove if not applicable -->
16+
17+
Fixing # (issue)
18+
19+
20+
## Before submitting
21+
22+
<!-- You can remove checks that are not relevant to this PR. -->
23+
24+
- [ ] This PR is made to fix a typo or improve the docs (you can dismiss the other checks if this is the case).
25+
- [ ] Was this discussed/approved via a GitHub issue? Please add a link to it if that's the case.
26+
- [ ] I have commented my code, particularly in hard-to-understand areas.
27+
- [ ] I have written necessary tests and already run them locally.

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
updates:
3+
# Python Dependencies
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
open-pull-requests-limit: 5
9+
10+
# GitHub Actions
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"
15+
open-pull-requests-limit: 5

0 commit comments

Comments
 (0)