Skip to content

Commit 3498bf2

Browse files
authored
Merge pull request #1390 from cortex-lab/agent/dependency-maintenance
Automate dependency maintenance
2 parents 1a63597 + 380ba3c commit 3498bf2

3 files changed

Lines changed: 136 additions & 116 deletions

File tree

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "uv"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
groups:
9+
minor-and-patch:
10+
applies-to: version-updates
11+
patterns:
12+
- "*"
13+
update-types:
14+
- "minor"
15+
- "patch"

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
name: CI
22

33
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48
workflow_dispatch:
59

10+
permissions:
11+
contents: read
12+
613
jobs:
714
test:
815
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)