Skip to content

Commit cfad653

Browse files
[fix] remove complex logic and add simple github workflow
1 parent f7f42c4 commit cfad653

14 files changed

Lines changed: 198 additions & 2195 deletions

.github/GITHUB_ACTIONS.md

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

.github/dependabot.yml

Lines changed: 13 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33

44
version: 2
55
updates:
6-
# Enable version updates for npm dependencies
76
- package-ecosystem: "npm"
87
directory: "/"
98
schedule:
10-
interval: "monthly" # Changed from weekly to monthly
9+
interval: "monthly"
1110
day: "monday"
1211
time: "09:00"
13-
timezone: "UTC"
14-
target-branch: "develop" # Only create PRs against develop branch
15-
open-pull-requests-limit: 3 # Reduced from 5 to 3
12+
timezone: "Europe/Sofia"
13+
target-branch: "develop"
14+
open-pull-requests-limit: 2
1615
labels:
1716
- "dependencies"
1817
- "npm"
@@ -21,29 +20,24 @@ updates:
2120
prefix: "chore"
2221
prefix-development: "chore"
2322
include: "scope"
24-
# Group updates for better PR management
2523
groups:
26-
# Group ALL development dependencies into ONE PR
2724
development-dependencies:
2825
dependency-type: "development"
2926
update-types:
3027
- "minor"
3128
- "patch"
32-
- "major" # Include major updates too
29+
- "major"
3330
# Group ALL production dependencies into ONE PR
3431
production-dependencies:
3532
dependency-type: "production"
3633
update-types:
3734
- "patch"
3835
- "minor"
39-
# Separate group for major production updates
4036
production-major-dependencies:
4137
dependency-type: "production"
4238
update-types:
4339
- "major"
44-
# Version update strategy
4540
versioning-strategy: increase
46-
# Ignore specific packages if needed
4741
ignore:
4842
# Ignore major version updates for stable packages
4943
- dependency-name: "react"
@@ -59,20 +53,19 @@ updates:
5953
- package-ecosystem: "github-actions"
6054
directory: "/"
6155
schedule:
62-
interval: "monthly" # Changed from weekly to monthly
56+
interval: "monthly"
6357
day: "monday"
6458
time: "09:00"
65-
timezone: "UTC"
66-
target-branch: "develop" # Only create PRs against develop branch
67-
open-pull-requests-limit: 2 # Reduced from 3 to 2
59+
timezone: "Europe/Sofia"
60+
target-branch: "develop"
61+
open-pull-requests-limit: 1
6862
labels:
6963
- "github-actions"
7064
- "dependencies"
7165
- "automated"
7266
commit-message:
7367
prefix: "ci"
7468
include: "scope"
75-
# Group ALL GitHub Actions updates into ONE PR
7669
groups:
7770
github-actions:
7871
patterns:
@@ -82,20 +75,19 @@ updates:
8275
- package-ecosystem: "docker"
8376
directory: "/"
8477
schedule:
85-
interval: "monthly" # Changed from weekly to monthly
78+
interval: "monthly"
8679
day: "monday"
8780
time: "09:00"
88-
timezone: "UTC"
89-
target-branch: "develop" # Only create PRs against develop branch
90-
open-pull-requests-limit: 2 # Reduced from 3 to 2
81+
timezone: "Europe/Sofia"
82+
target-branch: "develop"
83+
open-pull-requests-limit: 1
9184
labels:
9285
- "docker"
9386
- "dependencies"
9487
- "automated"
9588
commit-message:
9689
prefix: "build"
9790
include: "scope"
98-
# Group all Docker updates into ONE PR
9991
groups:
10092
docker-images:
10193
patterns:

0 commit comments

Comments
 (0)