Skip to content

Commit ace0200

Browse files
committed
chore: added a dependabot configuration and the default pull-request template.
1 parent 7b1ab18 commit ace0200

File tree

2 files changed

+88
-0
lines changed

2 files changed

+88
-0
lines changed

.github/dependabot.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'npm'
4+
directory: '/'
5+
schedule:
6+
interval: 'weekly'
7+
commit-message:
8+
prefix: 'chore(deps):'
9+
open-pull-requests-limit: 10
10+
groups:
11+
npm-version-updates:
12+
patterns:
13+
- '*'
14+
applies-to: 'version-updates'
15+
npm-security-updates:
16+
patterns:
17+
- '*'
18+
applies-to: 'security-updates'
19+
20+
- package-ecosystem: 'github-actions'
21+
directory: '/'
22+
schedule:
23+
interval: 'weekly'
24+
commit-message:
25+
prefix: 'chore(deps):'
26+
open-pull-requests-limit: 10
27+
groups:
28+
actions-version-updates:
29+
patterns:
30+
- '*'
31+
applies-to: 'version-updates'
32+
actions-security-updates:
33+
patterns:
34+
- '*'
35+
applies-to: 'security-updates'
36+
37+
- package-ecosystem: 'docker'
38+
directory: '/'
39+
schedule:
40+
interval: 'weekly'
41+
commit-message:
42+
prefix: 'chore(deps):'
43+
open-pull-requests-limit: 10
44+
groups:
45+
actions-version-updates:
46+
patterns:
47+
- '*'
48+
applies-to: 'version-updates'
49+
actions-security-updates:
50+
patterns:
51+
- '*'
52+
applies-to: 'security-updates'

.github/pull_request_template.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!--- Provide a general summary of your changes in the Title above -->
2+
3+
## Description
4+
5+
<!--- Describe your changes -->
6+
7+
## Related Issue
8+
9+
<!--- This project only accepts pull requests related to open issues -->
10+
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
11+
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
12+
<!--- Please link to the issue here: -->
13+
14+
## Motivation and Context
15+
16+
<!--- Why is this change required? What problem does it solve? -->
17+
18+
## How Has This Been Tested?
19+
20+
<!--- Please describe in detail how you tested your changes. -->
21+
<!--- Include details of your testing environment, and the tests you ran to -->
22+
<!--- see how your change affects other areas of the code, etc. -->
23+
24+
## Documentation:
25+
26+
<!--- Upon PR's approval, link the wiki page for your corresponding changes here. -->
27+
28+
## Checklist:
29+
30+
- [ ] I have updated the documentation accordingly.
31+
- [ ] I have assigned the correct milestone or created one if non-existent.
32+
- [ ] I have correctly labeled this pull request.
33+
- [ ] I have linked the corresponding issue in this description.
34+
- [ ] I have requested a review from at least 2 reviewers
35+
- [ ] I have checked the base branch of this pull request
36+
- [ ] I have checked my code for any possible security vulnerabilities

0 commit comments

Comments
 (0)