Skip to content

Commit

Permalink
Merge pull request #21 from codeforjapan/ci/dependabot
Browse files Browse the repository at this point in the history
Setup dependabot
  • Loading branch information
sushichan044 authored Mar 4, 2025
2 parents 869b996 + 6c73acd commit 6015d6d
Show file tree
Hide file tree
Showing 2 changed files with 76 additions and 0 deletions.
68 changes: 68 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
version: 2

updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
day: 'monday'
interval: 'weekly'
time: '10:00'
timezone: 'Asia/Tokyo'

- package-ecosystem: 'npm'
directory: '/'
schedule:
day: 'monday'
interval: 'weekly'
time: '10:00'
timezone: 'Asia/Tokyo'
groups:
# TIP: 複数の group にマッチする場合最初の group が適用される
# なので、より詳細な group を先に書く
react:
patterns:
- 'react'
- 'react-dom'
- '@types/react'
- '@types/react-dom'
update-types:
- 'minor'
- 'patch'
react-router:
patterns:
# TODO: add react-router patterns
- '@remix-run*'
mantine:
patterns:
- '@mantine*'
update-types:
- 'minor'
- 'patch'
conform:
patterns:
- '@conform-to*'
typescript:
patterns:
- 'typescript'
update-types:
- 'minor'
- 'patch'
eslint:
patterns:
- 'eslint*'
- '@eslint*'
- '@types/eslint*'
- '@typescript-eslint*'
- 'globals'
update-types:
- 'minor'
- 'patch'
test:
patterns:
- 'vitest'
- '@testing-library*'
dev-dependencies:
dependency-type: 'development'
update-types:
- 'minor'
- 'patch'
8 changes: 8 additions & 0 deletions prettier.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,12 @@ export default {
trailingComma: "all",
plugins: ["prettier-plugin-tailwindcss"],
tailwindStylesheet: "./app/app.css",
overrides: [
{
files: ["**/*.yml", "**/*.yaml"],
options: {
singleQuote: true,
},
},
],
};

0 comments on commit 6015d6d

Please sign in to comment.