Skip to content

Commit

Permalink
🤖 Add depandabot 🤖 (#87)
Browse files Browse the repository at this point in the history
## Aim of the PR
This PR fixes
[AB#233057](https://dev.azure.com/EquinorASA/bb9bd8cb-74f7-4ffa-b0cb-60eff0a0be58/_workitems/edit/233057)

## Implementation 
Add a depandabot workflow: 
- check for python package upgrades
- check for nuget package upgrades
- check for npm package upgrades

## Type of change
- [ ] Bug fix 
- [x] New feature 
- [ ] Breaking change 
- [ ] This change requires a documentation update
  • Loading branch information
henriettelienrebnor authored Feb 10, 2025
1 parent b237f80 commit e187c89
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/depandabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "main"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"

- package-ecosystem: "pip"
directory: "/cli/chex/"
target-branch: "main"
labels:
- "Pip deps"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"

- package-ecosystem: "nuget"
directory: "/client/Boundaries/"
target-branch: "main"
labels:
- "nuget deps"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"

- package-ecosystem: "npm"
directory: "/www/"
target-branch: "main"
labels:
- "npm deps"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"

0 comments on commit e187c89

Please sign in to comment.