Skip to content

Commit 191acfa

Browse files
committed
Add Dependabot and PR template
1 parent da9b7be commit 191acfa

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
##############################
3+
## Dependabot configuration ##
4+
##############################
5+
6+
#
7+
# Documentation:
8+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
9+
#
10+
11+
version: 2
12+
updates:
13+
# Maintain dependencies for GitHub Actions
14+
- package-ecosystem: "github-actions"
15+
directory: "/"
16+
schedule:
17+
interval: "daily"
18+
open-pull-requests-limit: 0
19+
20+
# Maintain dependencies for NPM
21+
- package-ecosystem: "npm"
22+
directory: "/"
23+
schedule:
24+
interval: "daily"
25+
open-pull-requests-limit: 0

.github/pull_request-template.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!-- Please ensure your PR title is brief and descriptive for a good changelog entry -->
2+
<!-- Link to issue if there is one -->
3+
4+
## What it solves
5+
6+
...
7+
8+
## Readiness Checklist
9+
10+
### Author/Contributor
11+
- [ ] If documentation is needed for this change, has that been included in this pull request
12+
- [ ] Pull request title is brief and descriptive (for a changelog entry)
13+
14+
### Reviewing Maintainer
15+
- [ ] Label as `breaking` if this is a large fundamental change
16+
- [ ] Label as either `automation`, `bug`, `documentation`, or `enhancement`
17+
- [ ] Label as `bump:patch`, `bump:minor`, or `bump:major` if this PR should create a new release

0 commit comments

Comments
 (0)