Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions plugins/plugins.testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,5 @@ defaults:
goflags: "-ldflags=-s"

plugins:
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

plugins: is currently declared with no value, which YAML interprets as null rather than an empty map. Since this file is consumed by loopinstall (via make install-plugins-testing / Docker builds), it’s safer and clearer to make this explicitly an empty map (e.g., plugins: {}) or remove the key if the tool supports it, to avoid schema/decoder differences treating null as invalid.

Suggested change
plugins:
plugins: {}

Copilot uses AI. Check for mistakes.
mock:
- enabled: true
moduleURI: "github.com/smartcontractkit/capabilities/mock"
gitRef: "02cb745cabad2979034e6f96ebb47c9322df24ba"
installPath: "."
capabilitywatcher:
- enabled: true
moduleURI: "github.com/smartcontractkit/capabilities/capabilitywatcher"
gitRef: "3d44e5711b322b57854a17de92277cdb8f383609"
installPath: "."


Loading