🌱 Add governance workflows and tooling conformance#16
Open
clubanderson wants to merge 1 commit intollm-d:mainfrom
Open
🌱 Add governance workflows and tooling conformance#16clubanderson wants to merge 1 commit intollm-d:mainfrom
clubanderson wants to merge 1 commit intollm-d:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Adds org-governance conformance artifacts to this repo by introducing Prow/GitHub governance workflows, stale/unstale automation, pre-commit hook configuration, and an OWNERS file to support approval flows.
Changes:
- Add multiple GitHub Actions workflows that delegate to reusable governance workflows (Prow commands/automerge/remove-lgtm, non-main gatekeeper, signed-commits, stale/unstale).
- Add
.pre-commit-config.yamlwith baseline formatting/validation hooks. - Add
OWNERSapprovers list for Prow-style approval workflows.
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 10 comments.
Show a summary per file
| File | Description |
|---|---|
OWNERS |
Defines approvers for Prow/approval workflows. |
.pre-commit-config.yaml |
Introduces pre-commit hooks for whitespace, YAML/JSON checks, etc. |
.github/workflows/ci-signed-commits.yaml |
Adds signed-commit verification via reusable workflow. |
.github/workflows/non-main-gatekeeper.yml |
Adds non-main PR gatekeeper via reusable workflow. |
.github/workflows/prow-github.yml |
Adds Prow command handling via reusable workflow. |
.github/workflows/prow-pr-automerge.yml |
Adds scheduled automerge job via reusable workflow. |
.github/workflows/prow-pr-remove-lgtm.yml |
Adds PR-triggered “remove LGTM” via reusable workflow. |
.github/workflows/stale.yaml |
Adds scheduled stale issue/PR management via reusable workflow. |
.github/workflows/unstale.yaml |
Adds event-driven “unstale” on reopen/comment via reusable workflow. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Add Prow command handling (LGTM removal, auto-merge, GitHub commands) - Add signed commit verification for PRs - Add non-main branch gatekeeper - Add stale/unstale issue management - Add pre-commit config with standard hooks - Add permissions blocks to all workflows - Set automerge cron to 15-minute interval - Use consistent .yml extension for all workflow files - Remove --unsafe flag from check-yaml hook Signed-off-by: Andrew Anderson <andy@clubanderson.com>
b514db6 to
d051be0
Compare
24 tasks
Contributor
Author
|
@aslom — friendly ping for a review when you get a chance. This PR adds governance workflows and tooling conformance to align with the rest of the llm-d org. Let me know if you have any questions or concerns. |
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
Part of org-wide governance conformance effort.