mirror of
https://github.com/github/awesome-copilot.git
synced 2026-03-12 04:05:12 +00:00
Add missing name field to workflow frontmatter
The parseWorkflowMetadata function requires both name and description fields. Added name to relevance-check.md and relevance-summary.md so they appear in the generated README.workflows.md. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -34,3 +34,5 @@ See [CONTRIBUTING.md](../CONTRIBUTING.md#adding-agentic-workflows) for guideline
|
|||||||
| Name | Description | Triggers |
|
| Name | Description | Triggers |
|
||||||
| ---- | ----------- | -------- |
|
| ---- | ----------- | -------- |
|
||||||
| [Daily Issues Report](../workflows/daily-issues-report.md) | Generates a daily summary of open issues and recent activity as a GitHub issue | schedule |
|
| [Daily Issues Report](../workflows/daily-issues-report.md) | Generates a daily summary of open issues and recent activity as a GitHub issue | schedule |
|
||||||
|
| [Relevance Check](../workflows/relevance-check.md) | Slash command to evaluate whether an issue or pull request is still relevant to the project | slash_command, roles |
|
||||||
|
| [Relevance Summary](../workflows/relevance-summary.md) | Manually triggered workflow that summarizes all open issues and PRs with a /relevance-check response into a single issue | workflow_dispatch |
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
name: Relevance Check
|
||||||
description: "Slash command to evaluate whether an issue or pull request is still relevant to the project"
|
description: "Slash command to evaluate whether an issue or pull request is still relevant to the project"
|
||||||
on:
|
on:
|
||||||
slash_command:
|
slash_command:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
name: Relevance Summary
|
||||||
description: "Manually triggered workflow that summarizes all open issues and PRs with a /relevance-check response into a single issue"
|
description: "Manually triggered workflow that summarizes all open issues and PRs with a /relevance-check response into a single issue"
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|||||||
Reference in New Issue
Block a user