Skip to content

Commit 89e5c59

Browse files
committed
Merge branch 'feat/ospo-workflows' of https://github.com/ashleywolf/awesome-copilot into feat/ospo-workflows
2 parents 926a6f3 + b222cdd commit 89e5c59

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

docs/README.workflows.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agentic-workflows) for guideline
3636
| ---- | ----------- | -------- |
3737
<<<<<<< HEAD
3838
<<<<<<< HEAD
39+
<<<<<<< HEAD
3940
| [Daily Issues Report](../workflows/daily-issues-report.md) | Generates a daily summary of open issues and recent activity as a GitHub issue | schedule |
4041
=======
4142
| [Contributors Report](../workflows/ospo-contributors-report.md) | Monthly contributor activity metrics across an organization's repositories. | schedule, workflow_dispatch |
@@ -44,8 +45,13 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agentic-workflows) for guideline
4445
| [Weekly Organization Health Report](../workflows/ospo-org-health.md) | Comprehensive weekly health report for a GitHub organization. Surfaces stale issues/PRs, merge time analysis, contributor leaderboards, and actionable items needing human attention. | schedule, workflow_dispatch |
4546
>>>>>>> d81ee5e (feat: add OSPO agentic workflow examples)
4647
=======
48+
=======
49+
>>>>>>> b222cdd5c41ca97dff0ee7531ee6592d91662c90
4750
| [OSPO Contributors Report](../workflows/ospo-contributors-report.md) | Monthly contributor activity metrics across an organization's repositories. | schedule, workflow_dispatch |
4851
| [OSPO Organization Health Report](../workflows/ospo-org-health.md) | Comprehensive weekly health report for a GitHub organization. Surfaces stale issues/PRs, merge time analysis, contributor leaderboards, and actionable items needing human attention. | schedule, workflow_dispatch |
4952
| [OSPO Stale Repository Report](../workflows/ospo-stale-repos.md) | Identifies inactive repositories in your organization and generates an archival recommendation report. | schedule, workflow_dispatch |
5053
| [OSS Release Compliance Checker](../workflows/ospo-release-compliance-checker.md) | Analyzes a target repository against open source release requirements and posts a detailed compliance report as an issue comment. | issues, workflow_dispatch |
54+
<<<<<<< HEAD
5155
>>>>>>> da2da6e (chore: add OSPO prefix to workflow names for discoverability)
56+
=======
57+
>>>>>>> b222cdd5c41ca97dff0ee7531ee6592d91662c90

eng/yaml-parser.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ function parseWorkflowMetadata(filePath) {
287287
// Extract tags and convert to array
288288
const tags = frontmatter.metadata?.tags
289289
? typeof frontmatter.metadata.tags === "string"
290-
? frontmatter.metadata.tags.split(",").map(tag => tag.trim())
290+
? frontmatter.metadata.tags.split(",").map((tag) => tag.trim())
291291
: Array.isArray(frontmatter.metadata.tags)
292292
? frontmatter.metadata.tags
293293
: []
@@ -327,8 +327,8 @@ export {
327327
extractMcpServerConfigs,
328328
extractMcpServers,
329329
parseFrontmatter,
330-
parseSkillMetadata,
331330
parseHookMetadata,
331+
parseSkillMetadata,
332332
parseWorkflowMetadata,
333333
parseYamlFile,
334334
safeFileOperation,

0 commit comments

Comments
 (0)