-
Notifications
You must be signed in to change notification settings - Fork 0
Create dependabot.yml #35
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
groupthinking-patch-3 | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
master | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
groupthinking-patch-3 | ||
- package-ecosystem: "" # See documentation for possible values | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
|
||
|
||
groupthinking-patch-2 | ||
- package-ecosystem: "" # See documentation for possible values | ||
|
||
|
@@ -17,6 +22,7 @@ updates: | |
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "docker" | ||
master | ||
master | ||
directory: "/" # Location of package manifests | ||
Comment on lines
24
to
27
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Stray The extra 🤖 Prompt for AI Agents
|
||
schedule: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YAML breaks at the first byte – stray scalars render the whole config invalid
Lines
groupthinking-patch-3
andmaster
are raw scalars placed where Dependabot expects a mapping. GitHub completely ignores malformed YAML, so today you have zero security-upgrade coverage.Remove every out-of-band token before the
version:
key.🧰 Tools
🪛 YAMLlint (1.37.1)
[error] 3-3: syntax error: expected '', but found ''
(syntax)
🤖 Prompt for AI Agents