Skip to content

Commit b03b974

Browse files
authored
feat: added configuration files for dependabot and labeler (#18)
* feat: added configuration files for dependabot and labeler * feat: added tokens label
1 parent 2c94e6e commit b03b974

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
pull-request-branch-name:
9+
separator: "-"
10+
11+
# Daily: Check minor and patch updates
12+
- package-ecosystem: "npm"
13+
directory: "/"
14+
schedule:
15+
interval: "daily"
16+
pull-request-branch-name:
17+
separator: "-"
18+
# https://github.com/dependabot/dependabot-core/issues/5226#issuecomment-1179434437
19+
versioning-strategy: increase

.github/labeler.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
# Add 'cicd' label to any file changes inside .github dir
3+
cicd:
4+
- .github/*
5+
- .github/**/*
6+
7+
# Add 'patterns' label to any file changes for the patterns
8+
patterns:
9+
- source/_patterns/**
10+
11+
# Add 'documentation' label to any file changes for the documentation files
12+
documentation:
13+
- ./**/*.md
14+
15+
# Add 'tokens' label to any file changes for the design tokens files
16+
tokens:
17+
- tokens/**

0 commit comments

Comments
 (0)