feat: add OSPO agentic workflow examples#802
Open
ashleywolf wants to merge 4 commits intogithub:stagedfrom
Open
feat: add OSPO agentic workflow examples#802ashleywolf wants to merge 4 commits intogithub:stagedfrom
ashleywolf wants to merge 4 commits intogithub:stagedfrom
Conversation
Add 4 OSPO workflow templates to workflows/ directory: - ospo-org-health.md: Weekly organization health report - ospo-contributors-report.md: Monthly contributor activity metrics - ospo-release-compliance-checker.md: OSS release readiness audit - ospo-stale-repos.md: Inactive repository detection and archival recommendations Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds four OSPO-focused Agentic Workflow examples under workflows/ and updates the workflows documentation index so they appear in the repo’s generated workflows table.
Changes:
- Added 4 new OSPO workflow definitions (org health, contributors report, release compliance checker, stale repos report).
- Updated
docs/README.workflows.mdto list the new workflows in the workflows table.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| workflows/ospo-org-health.md | New weekly org health report workflow (metrics + reporting via issue). |
| workflows/ospo-contributors-report.md | New monthly contributor metrics workflow (org/repo scoped). |
| workflows/ospo-release-compliance-checker.md | New issue-triggered OSS release readiness/compliance checker workflow (posts comment). |
| workflows/ospo-stale-repos.md | New stale repository detection workflow with report output. |
| docs/README.workflows.md | Adds the four workflows to the workflows index table. |
| @@ -0,0 +1,141 @@ | |||
| --- | |||
| name: 'Contributors Report' | |||
| description: "Monthly contributor activity metrics across an organization's repositories." | |||
There was a problem hiding this comment.
Frontmatter description is double-quoted here, but the repo’s workflow guidelines require descriptions to be wrapped in single quotes (see AGENTS.md:104). Please switch this description to single quotes for consistency with other workflows and the documented convention.
Suggested change
| description: "Monthly contributor activity metrics across an organization's repositories." | |
| description: 'Monthly contributor activity metrics across an organization''s repositories.' |
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Replace 'triggers:' with 'metadata.triggers:' and 'tags:' with 'labels:' to pass gh aw compile --validate. Update yaml-parser to read from both awesome-copilot and gh-aw field names. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Use single quotes for description in ospo-contributors-report.md - Define 60_DAYS_AGO and 30_DAYS_AGO variables in org-health Step 1 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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
Adds 4 OSPO (Open Source Program Office) agentic workflow examples to the
workflows/directory, following the structure established in #786.Workflows
ospo-org-health.mdospo-contributors-report.mdospo-release-compliance-checker.mdospo-stale-repos.mdType of Contribution