-
Notifications
You must be signed in to change notification settings - Fork 16
Add Watchflow governance rules (4 rules, 3 high-priority) #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,35 +1,31 @@ | ||
| rules: | ||
| # Essential Open Source Rules | ||
| - description: "Pull requests must have descriptive titles following conventional commit format" | ||
| enabled: true | ||
| severity: "medium" | ||
| event_types: ["pull_request"] | ||
| parameters: | ||
| title_pattern: "^feat|^fix|^docs|^style|^refactor|^test|^chore|^perf|^ci|^build|^revert" | ||
|
|
||
| - description: "New contributors require approval from at least one past contributor" | ||
| enabled: true | ||
| severity: "medium" | ||
| event_types: ["pull_request"] | ||
| parameters: | ||
| min_past_contributors: 1 | ||
|
|
||
| - description: "Code changes must include corresponding tests" | ||
| enabled: true | ||
| severity: "medium" | ||
| event_types: ["pull_request"] | ||
| parameters: | ||
| pattern: "tests/.*\\.py$|test_.*\\.py$" | ||
| condition_type: "files_match_pattern" | ||
|
|
||
| - description: "Changes to critical files require review from code owners" | ||
| enabled: true | ||
| severity: "high" | ||
| event_types: ["pull_request"] | ||
|
|
||
| - description: "No direct pushes to main branch - all changes must go through PRs" | ||
| enabled: true | ||
| severity: "critical" | ||
| event_types: ["push"] | ||
| parameters: | ||
| allow_force_push: false | ||
| - description: 'code_owners: Enforce CODEOWNERS approval for critical paths to reduce | ||
| the 35% codeowner bypass rate, improving governance and code quality.' | ||
| enabled: true | ||
| severity: high | ||
| event_types: | ||
| - pull_request | ||
| parameters: {} | ||
| - description: 'required_workflows: Ensure CI passes before merge to maintain quality | ||
| and prevent regressions, supporting the existing CI/CD setup.' | ||
| enabled: true | ||
| severity: medium | ||
| event_types: | ||
| - pull_request | ||
| parameters: {} | ||
| - description: 'required_labels: Enforce categorization of PRs (bug, enhancement, | ||
| etc.) to improve issue-diff alignment and clarity, addressing the 15% mismatch | ||
| rate.' | ||
| enabled: true | ||
| severity: medium | ||
| event_types: | ||
| - pull_request | ||
| parameters: {} | ||
| - description: 'title_pattern: Enforce Conventional Commits (feat:, fix:, etc.) to | ||
| clarify PR content and ensure meaningful change tracking, especially given zero | ||
| lines changed in many PRs.' | ||
| enabled: true | ||
| severity: medium | ||
| event_types: | ||
| - pull_request | ||
| parameters: {} | ||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Severity mismatch with PR objectives.
The PR description lists
required_workflowsas High priority, but the implementation usesmediumseverity. If CI passing is critical to prevent regressions, consider aligning the severity.Suggested fix
- description: 'required_workflows: Ensure CI passes before merge to maintain quality and prevent regressions, supporting the existing CI/CD setup.' enabled: true - severity: medium + severity: high event_types: - pull_request parameters: {}📝 Committable suggestion
🤖 Prompt for AI Agents