Skip to content

Commit 1f5400b

Browse files
authored
ci(dependabot): group dependency updates [AR-48418] (#164)
1 parent 23e2fd9 commit 1f5400b

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ updates:
77
interval: 'weekly'
88
commit-message:
99
prefix: 'chore'
10+
groups:
11+
development:
12+
dependency-type: 'development'
13+
patterns:
14+
- '**'
15+
production:
16+
dependency-type: 'production'
17+
patterns:
18+
- '**'
1019

1120
- package-ecosystem: 'github-actions'
1221
directory: '/'

.github/workflows/pr-name-linter.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ jobs:
1919
contents: read
2020
pull-requests: read
2121

22-
# Skip release PRs
22+
# Skip release & dependabot PRs
2323
if: |
24-
! (github.event.pull_request.title == 'chore(release): publish' && github.event.pull_request.user.login == 'github-actions[bot]')
24+
! (github.event.pull_request.title == 'chore(release): publish' && github.event.pull_request.user.login == 'github-actions[bot]') &&
25+
! (github.event.pull_request.user.login == 'dependabot[bot]')
2526
2627
steps:
2728
- name: Checkout source code

0 commit comments

Comments
 (0)