Skip to content

Commit

Permalink
Add support for devcontainers ecosystem (#950)
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell authored Jan 29, 2024
1 parent 98803be commit 9296b8e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
- { ecosystem: pub }
- { ecosystem: pip }
- { ecosystem: swift }
- { ecosystem: devcontainers }
- { ecosystem: terraform }

steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
- { ecosystem: pub }
- { ecosystem: pip }
- { ecosystem: swift }
- { ecosystem: devcontainers }
- { ecosystem: terraform }

env:
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"cSpell.words": [
"azuredevops",
"devcontainers",
"fabrikam",
"Kubernetes"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ public void ConvertEcosystemToPackageManager_Works(string ecosystem, string expe
{ "gradle", "gradle" },
{ "maven", "maven" },
{ "swift", "swift" },
{ "devcontainers", "devcontainers" },
{ "terraform", "terraform" },
{ "docker", "docker" },
};
Expand Down
1 change: 1 addition & 0 deletions updater/bin/update_script.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
require "dependabot/python"
require "dependabot/pub"
require "dependabot/swift"
require "dependabot/devcontainers"
require "dependabot/terraform"

require_relative "azure_helpers"
Expand Down
3 changes: 2 additions & 1 deletion updater/lib/dependabot/setup.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
npm_and_yarn|
bundler|
pub|
swift
swift|
devcontainers
)}x

config.processors += [ExceptionSanitizer]
Expand Down

0 comments on commit 9296b8e

Please sign in to comment.