Skip to content

Commit

Permalink
Merge pull request #22 from hadirgax/feat/add-dependabot-config
Browse files Browse the repository at this point in the history
feat: create dependabot config file
  • Loading branch information
hadirgax authored Jun 8, 2024
2 parents 5e5f5c2 + 95007c7 commit 8f482f1
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 217 deletions.
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 5
reviewers:
- "dependabot[bot]"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 3
reviewers:
- "dependabot[bot]"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 5
reviewers:
- "dependabot[bot]"
10 changes: 10 additions & 0 deletions setup_devenv/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Setup Windows Development Environment

# WSL2

If you have issues about compatiblility between Windows EOL and Linux EOL format while executing the
`wsl.ps1` script, you can try to run the following commands in PowerShell:

```powershell
(Get-Content ${PATH_TO_SH_FILE}) -join "`n" | Set-Content ${PATH_TO_SH_FILE}
```

This file was deleted.

0 comments on commit 8f482f1

Please sign in to comment.