fix: remove unsupported reviewers property from dependabot.yml#64
Merged
Conversation
- Redesigned README.md in English with EMLyzer style guide - Added CONTRIBUTING.md with contributor guidelines, code standards, and PR workflow - Added ARCHITECTURE.md with system design, components, and threading model All documentation follows GitHub-optimized format with emoji, alerts, and tables.
- Added USER_GUIDE.md with 6-step tutorial, FAQ, and logging setup - Added TROUBLESHOOTING.md with 10+ common issues and OS-specific solutions - Added DEVELOPMENT.md with setup guide, code standards, and testing instructions All guides include collapsible sections, tables with emoji, and EMLyzer style formatting.
- Added SECURITY.md with privacy model, technical security details, and responsible disclosure - Added CODE_OF_CONDUCT.md based on Contributor Covenant v2.1 - Added GitHub issue templates for bug reports and feature requests - Added GitHub pull request template with testing and checklist Includes automated template system for users submitting issues and PRs.
- Configure Dependabot to scan pip dependencies weekly - Auto-open PRs for security updates (max 5 per week) - Configure Dependabot for GitHub Actions - Use standardized commit message format (chore(deps), ci(deps)) - Reviewers and labels configured for dependency PRs
- Automatically approves PRs created by the maintainer (overwrite00) - Removes need for repository admin bypass in ruleset - Maintains security while enabling smooth workflow - Approval is traceable and can be disabled if needed
GitHub Actions cannot approve pull requests due to platform limitations. The bypass admin in ruleset is the appropriate solution for solo maintainers. Revert PR #63.
The 'reviewers' property is not supported in Dependabot v2.0. Removed to fix schema validation warnings in VS Code. This aligns with Dependabot v2 supported properties: - schedule, labels, commit-message, allow, ignore - open-pull-requests-limit, etc. But NOT: reviewers (use assignees instead if needed)
Kept the fix from develop (removed unsupported reviewers property) instead of the reverted version from main.
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.
🔧 Fix Dependabot Configuration
Remove the unsupported
reviewersproperty from dependabot.yml that was causing VS Code schema validation warnings.Details
reviewers(not supported in Dependabot v2.0)Supported Properties in Dependabot v2
✅ schedule, labels, commit-message, allow, ignore, open-pull-requests-limit
❌ reviewers (use assignees instead if needed in future)
Testing