Skip to content

Commit

Permalink
Dependabot 2.0: Add negative tests for tool names
Browse files Browse the repository at this point in the history
This may help prevent confusion surrounding tool names being listed
in the documentation (like "pip-compile") that are invalid YAML values
and must instead be configured with a specific YAML (like "pip").
  • Loading branch information
kurtmckee committed Jul 15, 2024
1 parent 5ac6f65 commit 5ea057d
Show file tree
Hide file tree
Showing 7 changed files with 84 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"updates": [
{
"directory": "/",
"package-ecosystem": "elm-package",
"schedule": {
"interval": "monthly"
}
}
],
"version": 2
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"updates": [
{
"directory": "/",
"package-ecosystem": "hex",
"schedule": {
"interval": "monthly"
}
}
],
"version": 2
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"updates": [
{
"directory": "/",
"package-ecosystem": "pip-compile",
"schedule": {
"interval": "monthly"
}
}
],
"version": 2
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"updates": [
{
"directory": "/",
"package-ecosystem": "pipenv",
"schedule": {
"interval": "monthly"
}
}
],
"version": 2
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"updates": [
{
"directory": "/",
"package-ecosystem": "pnpm",
"schedule": {
"interval": "monthly"
}
}
],
"version": 2
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"updates": [
{
"directory": "/",
"package-ecosystem": "poetry",
"schedule": {
"interval": "monthly"
}
}
],
"version": 2
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"updates": [
{
"directory": "/",
"package-ecosystem": "yarn",
"schedule": {
"interval": "monthly"
}
}
],
"version": 2
}

0 comments on commit 5ea057d

Please sign in to comment.