Skip to content

Commit b1fa718

Browse files
committed
fix(dependabot): correct drifted labels and restore github-actions ecosystem
Version/JS PRs were tagged with "python"/"javascript" labels that no longer exist in the repo (renamed to lang:python/lang:javascript), so Dependabot silently dropped them. Also re-adds the github-actions ecosystem, removed unintentionally in a5f9d7b, so CI action bumps (actions/checkout, codeql-action, etc.) get tracked automatically again.
1 parent a4696ac commit b1fa718

1 file changed

Lines changed: 22 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ updates:
1313
rebase-strategy: auto
1414
labels:
1515
- dependencies
16-
- python
16+
- lang:python
1717

1818
# Node.js (Electron)
1919
- package-ecosystem: npm
@@ -25,7 +25,7 @@ updates:
2525
rebase-strategy: auto
2626
labels:
2727
- dependencies
28-
- javascript
28+
- lang:javascript
2929
ignore:
3030
# tar vulnerabilities - no upstream fix available
3131
# These are false positives for a desktop app: hardlink traversal/symlink poisoning
@@ -46,4 +46,23 @@ updates:
4646
rebase-strategy: auto
4747
labels:
4848
- dependencies
49-
- javascript
49+
- lang:javascript
50+
51+
# GitHub Actions (CI/CD workflow dependencies)
52+
- package-ecosystem: github-actions
53+
directory: /
54+
target-branch: develop
55+
schedule:
56+
interval: weekly
57+
day: monday
58+
time: "04:00"
59+
timezone: UTC
60+
open-pull-requests-limit: 5
61+
rebase-strategy: auto
62+
labels:
63+
- dependencies
64+
- type:ci
65+
- scope:deps
66+
commit-message:
67+
prefix: "ci(deps)"
68+
include: scope

0 commit comments

Comments
 (0)