Skip to content

Commit 475b777

Browse files
authored
Use dependabot instead of renovate (#280)
1 parent 95c7c1e commit 475b777

File tree

3 files changed

+21
-18
lines changed

3 files changed

+21
-18
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
reviewers:
8+
- "jamesrweb"
9+
labels:
10+
- "dependencies"
11+
groups:
12+
development-dependencies:
13+
dependency-type: "development"
14+
ignore:
15+
- dependency-name: "*"
16+
update-types: ["version-update:semver-patch"]

.github/renovate.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/RenovateBot.yml renamed to .github/workflows/DependabotBot.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
name: Renovate Bot
1+
name: Dependabot Bot
22

33
on:
44
pull_request_target:
55
branches: [master]
66

77
jobs:
8-
renovate-bot:
8+
dependabot-bot:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: P5-wrapper/setup-action@v1.0.6
1212

13-
- name: Run format if the PR is from the Renovate bot
14-
if: github.actor == 'renovate[bot]'
13+
- name: Run format if the PR is from the Dependabot Bot
14+
if: github.actor == 'dependabot[bot]'
1515
run: pnpm format
1616
shell: bash
1717

1818
- name: Commit any formatting changes
19-
if: github.actor == 'renovate[bot]'
19+
if: github.actor == 'dependabot[bot]'
2020
uses: stefanzweifel/git-auto-commit-action@v5.0.0
2121
with:
2222
commit_message: Apply formatting updates

0 commit comments

Comments
 (0)