Conversation
…enhance scanner with warning handling
…tion checks, and CI integration
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.
This pull request introduces a comprehensive release readiness and quality gate workflow for the project, along with related documentation, configuration, and codebase updates. It adds scripts and CI automation for enforcing release policies, artifact integrity, documentation synchronization, and quality thresholds. Additionally, it updates the application logic to support watcher-driven rescans and improves the release and install documentation.
Release and Quality Automation
.github/workflows/release-gate.yml) to automate release readiness checks, artifact publishing validation, and artifact upload steps.scripts/quality-gate.sh(runs tests and lints),scripts/release-gate.sh(enforces release policy, docs sync, integrity, and logs approvals), andscripts/publish-check.sh(validates package publishability). [1] [2] [3]config/release-policy.toml(release policy),config/quality-thresholds.toml(quality metrics), andconfig/docs-sync-checklist.md(docs sync policy). [1] [2] [3]Documentation and Contribution Process
README.mdwith install instructions, build prerequisites, new directory structure, and detailed sections for quality and release gates, including their inputs and outputs. [1] [2] [3]CONTRIBUTING.mdto reference the new release and docs impact checks, and to align contribution steps with the new scripts. [1] [2].github/PULL_REQUEST_TEMPLATE.md) requiring summary, testing, docs impact, and release readiness checklists.Application Logic Improvements
src/app/actions/boot.rsto support watcher-driven rescans, batching, and improved scan state management, including tracking scan generations and handling warnings. [1] [2] [3] [4] [5] [6]src/app/actions/mod.rs.Packaging and Metadata
0.2.0and explicitly defined the binary target inCargo.toml. [1] [2]These changes collectively establish a robust, automated release process with enforced quality and documentation standards, while improving developer experience and reliability for end users.