-
Notifications
You must be signed in to change notification settings - Fork 0
refactor(dependabot): restructure skill to recommended subdirectory format v1.3.0 #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
9b0d3ca
refactor(dependabot): restructure skill to recommended subdirectory f…
vnz c6be1a8
docs: add dependabot to README and document skill structure in CLAUDE.md
vnz fb9f7a0
docs(dependabot): remove redundant CLI behavior explanations
vnz 5294a9b
docs(dependabot): consolidate remaining redundancies
vnz c988bd1
docs(dependabot): apply optional improvements from skill review
vnz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
plugins/dependabot/skills/dependabot/references/ecosystems.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| # Supported Ecosystems Reference | ||
|
|
||
| This file contains the complete mapping of user aliases to Dependabot CLI ecosystem values, and the detection methods for auto-discovery. | ||
|
|
||
| ## Ecosystem Alias Mapping | ||
|
|
||
| Map common user phrases to Dependabot CLI ecosystem values: | ||
|
|
||
| | User Says | CLI Ecosystem | | ||
| |-----------|---------------| | ||
| | npm, yarn, pnpm | `npm_and_yarn` | | ||
| | github-actions, actions, workflows | `github_actions` | | ||
| | terraform, tf | `terraform` | | ||
| | go, golang | `go_modules` | | ||
| | python, pip, pipenv | `pip` | | ||
| | ruby, bundler, gems | `bundler` | | ||
| | rust, cargo | `cargo` | | ||
| | docker | `docker` | | ||
| | maven, java | `maven` | | ||
| | gradle | `gradle` | | ||
| | composer, php | `composer` | | ||
| | nuget, dotnet, csharp | `nuget` | | ||
| | helm | `helm` | | ||
| | dart, flutter, pub | `pub` | | ||
| | swift | `swift` | | ||
| | elixir, hex | `hex` | | ||
|
|
||
| ## Ecosystem Auto-Detection | ||
|
|
||
| Detect which ecosystems are present using file existence checks: | ||
|
|
||
| | Ecosystem | CLI Value | Detection Method | | ||
| |-----------|-----------|------------------| | ||
| | GitHub Actions | `github_actions` | Glob: `.github/workflows/*.yml` or `.github/workflows/*.yaml` | | ||
| | Terraform | `terraform` | Glob: `*.tf` or `**/*.tf` (check root and subdirs) | | ||
| | npm/yarn/pnpm | `npm_and_yarn` | File exists: `package.json` | | ||
| | Go | `go_modules` | File exists: `go.mod` | | ||
| | Python (pip) | `pip` | File exists: `requirements.txt`, `pyproject.toml`, `Pipfile`, or `setup.py` | | ||
| | Ruby | `bundler` | File exists: `Gemfile` | | ||
| | Rust | `cargo` | File exists: `Cargo.toml` | | ||
| | Docker | `docker` | Glob: `Dockerfile` or `*.dockerfile` or `docker-compose.yml` | | ||
| | Maven | `maven` | File exists: `pom.xml` | | ||
| | Gradle | `gradle` | File exists: `build.gradle` or `build.gradle.kts` | | ||
| | Composer | `composer` | File exists: `composer.json` | | ||
| | NuGet | `nuget` | Glob: `*.csproj` or `packages.config` or `*.fsproj` | | ||
| | Helm | `helm` | File exists: `Chart.yaml` | | ||
| | Pub (Dart) | `pub` | File exists: `pubspec.yaml` | | ||
| | Swift | `swift` | File exists: `Package.swift` | | ||
| | Hex (Elixir) | `hex` | File exists: `mix.exs` | | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.