Skip to content

Commit 316c57e

Browse files
brunoborgesCopilot
andcommitted
Add issue templates with Agentic Workflow option
Creates issue templates for new resources and a dedicated template for Agentic Workflows with pre-filled frontmatter scaffolding. Also updates the PR template to include workflow as a contribution type. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent e853da4 commit 316c57e

File tree

4 files changed

+85
-3
lines changed

4 files changed

+85
-3
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Agentic Workflows Documentation
4+
url: https://github.github.com/gh-aw
5+
about: Learn how to create AI-powered repository automations with GitHub Agentic Workflows
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: New Agent, Prompt, Instruction, Skill, or Hook
3+
description: Suggest or submit a new agent, prompt, instruction, skill, or hook
4+
title: "[Resource]: "
5+
labels: ["new-resource"]
6+
---
7+
8+
### Resource Type
9+
10+
<!-- Which type of resource is this? -->
11+
12+
- [ ] Agent
13+
- [ ] Prompt
14+
- [ ] Instruction
15+
- [ ] Skill
16+
- [ ] Hook
17+
- [ ] Plugin
18+
19+
### Name
20+
21+
<!-- A clear, descriptive name for the resource -->
22+
23+
### Description
24+
25+
<!-- What does this resource do? What problem does it solve? -->
26+
27+
### Content
28+
29+
<!-- Paste the file content or describe the resource in detail -->
30+
31+
### Additional Context
32+
33+
<!-- Any other context, examples, or references -->
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
name: New Agentic Workflow
3+
description: Suggest or submit a new Agentic Workflow for AI-powered repository automation
4+
title: "[Workflow]: "
5+
labels: ["workflow", "new-resource"]
6+
---
7+
8+
### Workflow Name
9+
10+
<!-- A clear, descriptive name for the workflow -->
11+
12+
### Description
13+
14+
<!-- What does this workflow do? What problem does it solve? -->
15+
16+
### Trigger Type
17+
18+
<!-- When should this workflow run? (e.g., schedule, issues, pull_request, slash_command, workflow_dispatch) -->
19+
20+
### Workflow Source
21+
22+
<!-- Paste the .md workflow file content, or link to an existing workflow -->
23+
24+
```markdown
25+
---
26+
name: ''
27+
description: ''
28+
triggers: []
29+
tags: []
30+
on:
31+
# trigger config
32+
permissions:
33+
contents: read
34+
safe-outputs:
35+
# safe output config
36+
---
37+
38+
<!-- Natural language instructions here -->
39+
```
40+
41+
### Additional Context
42+
43+
<!-- Any other context, examples, or references (e.g., link to Agentic Workflows docs) -->

.github/pull_request_template.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## Pull Request Checklist
22

33
- [ ] I have read and followed the [CONTRIBUTING.md](https://github.com/github/awesome-copilot/blob/main/CONTRIBUTING.md) guidelines.
4-
- [ ] My contribution adds a new instruction, prompt, agent, or skill file in the correct directory.
4+
- [ ] My contribution adds a new instruction, prompt, agent, skill, hook, or workflow file in the correct directory.
55
- [ ] The file follows the required naming convention.
66
- [ ] The content is clearly structured and follows the example format.
7-
- [ ] I have tested my instructions, prompt, agent, or skill with GitHub Copilot.
7+
- [ ] I have tested my instructions, prompt, agent, skill, or workflow with GitHub Copilot.
88
- [ ] I have run `npm start` and verified that `README.md` is up to date.
99

1010
---
@@ -22,7 +22,8 @@
2222
- [ ] New agent file.
2323
- [ ] New plugin.
2424
- [ ] New skill file.
25-
- [ ] Update to existing instruction, prompt, agent, plugin, or skill.
25+
- [ ] New agentic workflow.
26+
- [ ] Update to existing instruction, prompt, agent, plugin, skill, or workflow.
2627
- [ ] Other (please specify):
2728

2829
---

0 commit comments

Comments
 (0)