Fix Dependabot PR backlog and workflow label issues#63
Merged
Conversation
- Create missing repository labels (dependencies, rust, ci) that Dependabot references but didn't exist, causing label assignment failures - Remove --all-features flag from CI check/clippy/test jobs to prevent build failures from optional python/PyO3 feature requiring Python dev headers not available in CI - Add pip ecosystem to dependabot.yml for pyproject.toml dependency tracking Closes #61 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Resolves the growing backlog of open Dependabot pull requests by fixing label-related issues and CI workflow misconfigurations.
dependencies,rust,ci) that Dependabot references independabot.ymlbut didn't exist in the repo, causing label assignment failures on every Dependabot PR--all-featuresflag from CIcheck,clippy, andtestjobs — this flag enabled the optionalpython(PyO3) feature which requires Python development headers not available in the CI runner, causing build failures on Dependabot PRs (and all PRs)pipecosystem todependabot.ymlfor trackingpyproject.tomldependency updatesRoot Cause Analysis
dependabot.ymlreferenced labelsdependencies,rust, andci, but only default GitHub labels existed in the repo. Dependabot silently failed to apply labels, making PRs harder to filter and manage.--all-featuresin CI compiled withpyo3(optional Python FFI feature), which requires Python dev headers (Python.h). Standard CI runners don't have these, socargo check/clippy/test --all-featuresfailed on every PR.pyproject.tomlexists onmainbut Dependabot wasn't configured to track its dependencies.Test plan
Closes #61
🤖 Generated with Claude Code