Skip to content

Add required dependency-name property to Dependabot ignore rules#103

Merged
willtheorangeguy merged 3 commits intomasterfrom
copilot/fix-dependabot-ignore-configuration
Feb 5, 2026
Merged

Add required dependency-name property to Dependabot ignore rules#103
willtheorangeguy merged 3 commits intomasterfrom
copilot/fix-dependabot-ignore-configuration

Conversation

Copy link
Contributor

Copilot AI commented Feb 5, 2026

Dependabot's schema requires each ignore rule to have a dependency-name property, which was missing from all three package ecosystem configurations.

Changes

Added dependency-name: "*" to ignore rules for github-actions, pip, and docker ecosystems to satisfy schema validation while maintaining the intended behavior of ignoring PATCH updates across all dependencies.

Before:

ignore: 
  - update-types: ["version-update:semver-patch"]

After:

ignore: 
  - dependency-name: "*"
    update-types: ["version-update:semver-patch"]

The wildcard "*" applies the ignore rule to all dependencies within each ecosystem.


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Co-authored-by: willtheorangeguy <18339050+willtheorangeguy@users.noreply.github.com>
Copilot AI changed the title [WIP] Correct malformed ignore configuration in dependabot.yml Fix malformed ignore configuration in dependabot.yml Feb 5, 2026
Co-authored-by: willtheorangeguy <18339050+willtheorangeguy@users.noreply.github.com>
Copilot AI changed the title Fix malformed ignore configuration in dependabot.yml Add required dependency-name property to Dependabot ignore rules Feb 5, 2026
@willtheorangeguy willtheorangeguy marked this pull request as ready for review February 5, 2026 17:52
Copilot AI review requested due to automatic review settings February 5, 2026 17:52
@willtheorangeguy willtheorangeguy merged commit 0c4cd31 into master Feb 5, 2026
5 checks passed
@willtheorangeguy willtheorangeguy deleted the copilot/fix-dependabot-ignore-configuration branch February 5, 2026 17:52
@github-actions github-actions bot locked and limited conversation to collaborators Feb 5, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants