diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 58228b6..8f4ac30 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,23 +2,46 @@ version: 2 updates: # Maintain dependencies for npm. - package-ecosystem: 'npm' + assignees: + - 'lumirlumir' # Specify all directories from the current layer and below recursively, using globstar, for locations of manifest files. directories: - '**/*' - ignore: - - dependency-name: 'eslint' - versions: ['9'] + groups: + bananass: + patterns: + - 'eslint-config-bananass' + - 'eslint-config-bananass-react' + - 'prettier-config-bananass' + babel: + patterns: + - '@babel/*' + react: + patterns: + - 'react' + - 'react-dom' + next: + patterns: + - 'next' + - '@next/*' + reviewers: + - 'lumirlumir' schedule: interval: 'daily' time: '10:00' timezone: 'Asia/Seoul' pull-request-branch-name: separator: '-' + versioning-strategy: 'increase' # Maintain dependencies for GitHub Actions. - package-ecosystem: 'github-actions' + assignees: + - 'lumirlumir' # Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) directory: '/' + reviewers: + - 'lumirlumir' schedule: interval: 'weekly' day: 'monday'