Skip to content

Commit 1ce9999

Browse files
renovate[bot]James Baxley
authored and
James Baxley
committed
Configure Renovate (#1950)
* Add renovate.json * prep repo for renovate
1 parent 19bd505 commit 1ce9999

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

.github/settings.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ labels:
2929
color: c2e0c6
3030
- name: feature
3131
color: 5319e7
32-
- name: greenkeeper
32+
- name: dependencies
3333
color: ededed
3434
- name: idea
3535
color: fbca04

dangerfile.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const raiseIssueAboutPaths = (
5757
};
5858

5959
const authors = commits.map(x => x.author.login);
60-
const isBot = authors.some(x => ['greenkeeper'].indexOf(x) > -1);
60+
const isBot = authors.some(x => ['greenkeeper', 'renovate'].indexOf(x) > -1);
6161

6262
// Rules
6363
if (!isBot) {

renovate.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"pinVersions": true,
3+
"semanticCommits": true,
4+
"depTypes": [{ "depType": "dependencies", "pinVersions": false }],
5+
"schedule": [
6+
"after 10pm and before 5am on every weekday"
7+
],
8+
"rebaseStalePrs": true,
9+
"prCreation": "not-pending",
10+
"automerge": "minor",
11+
"labels": [
12+
"tooling",
13+
"dependencies"
14+
],
15+
"assignees": [
16+
"@jbaxleyiii"
17+
],
18+
"reviewers": [
19+
"@jbaxleyiii"
20+
]
21+
}

0 commit comments

Comments
 (0)