You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The agentic workflows have been updated to use GitHub Discussions instead of Issues. Before these workflows can be used, the following discussion categories need to be created in the repository:
4
+
5
+
## Required Discussion Categories
6
+
7
+
### 1. Announcements
8
+
-**Slug**: `announcements`
9
+
-**Description**: Important updates and status reports for the project
10
+
-**Used by workflows**:
11
+
- daily-plan.md
12
+
- daily-team-status.md
13
+
- daily-dependency-updates.md
14
+
15
+
### 2. Ideas
16
+
-**Slug**: `ideas`
17
+
-**Description**: Feature requests, research findings, and improvement proposals
18
+
-**Used by workflows**:
19
+
- weekly-research.md
20
+
- daily-test-improver.md
21
+
- daily-progress.md
22
+
- daily-perf-improver.md
23
+
- daily-backlog-burner.md
24
+
25
+
### 3. Q&A
26
+
-**Slug**: `q-a`
27
+
-**Description**: Questions and quality assurance findings
28
+
-**Used by workflows**:
29
+
- daily-qa.md
30
+
- daily-accessibility-review.md
31
+
32
+
## How to Create Discussion Categories
33
+
34
+
1. Go to your repository on GitHub
35
+
2. Navigate to the "Discussions" tab
36
+
3. If Discussions are not enabled:
37
+
- Go to Settings → Features
38
+
- Enable "Discussions"
39
+
4. Click on the "Categories" section in Discussions
40
+
5. Create the following categories with the exact slugs specified above:
41
+
-**Announcements** (slug: `announcements`)
42
+
-**Ideas** (slug: `ideas`)
43
+
-**Q&A** (slug: `q-a`)
44
+
45
+
## Notes
46
+
47
+
- The category slugs must match exactly as specified (e.g., `q-a` not `qa` or `q_a`)
48
+
- GitHub may provide default categories when you first enable Discussions - you can keep those or customize as needed
49
+
- The workflows reference these categories in their `safe-outputs` configuration
50
+
- After creating the categories, compile the workflows using `gh aw compile` to ensure they work correctly
Copy file name to clipboardExpand all lines: workflows/daily-accessibility-review.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,9 @@ permissions: read-all
11
11
network: defaults
12
12
13
13
safe-outputs:
14
-
create-issue:
14
+
create-discussion:
15
15
title-prefix: "${{ github.workflow }}"
16
+
category: "q-a"
16
17
max: 5
17
18
add-comment:
18
19
max: 5
@@ -54,8 +55,8 @@ Steps:
54
55
If the section "Build and run app in background" already contains actual commands, then go to the next step. If it
55
56
still contains a placeholder, then:
56
57
a. Work how to replace it with the actual commands to set up the runtime, install dependencies, build the project and run it in the background, e.g., using `&` at the end of the command.
57
-
b. Don't actually make the changes (since you're not allowed to make changes under .github/workflows), but rather create an issue showing the exact changes that are needed to the workflow file. Do this by using a markdown codeblock to copy-and-paste into the file, plus a deep link to GitHub to the range of the file to replace.
58
-
c. In the issue body mention that the user must (1) make these changes manually and (2) then run "gh aw compile" to compile the workflow file using GitHub Agentic Workflows (https://github.com/githubnext/gh-aw).
58
+
b. Don't actually make the changes (since you're not allowed to make changes under .github/workflows), but rather create a discussion showing the exact changes that are needed to the workflow file. Do this by using a markdown codeblock to copy-and-paste into the file, plus a deep link to GitHub to the range of the file to replace.
59
+
c. In the discussion body mention that the user must (1) make these changes manually and (2) then run "gh aw compile" to compile the workflow file using GitHub Agentic Workflows (https://github.com/githubnext/gh-aw).
59
60
d. Also instruct them to remove this section from the markdown.
60
61
e. Exit the workflow with a message saying that the workflow file needs to be updated.
61
62
@@ -64,7 +65,7 @@ still contains a placeholder, then:
64
65
65
66
2. Review the source code of the application to look for accessibility issues in the code. Use the Grep, LS, Read, etc. tools.
66
67
67
-
3. Use the GitHub MCP tool to create issues for any accessibility problems you find. Each issue should include:
68
+
3. Use the GitHub MCP tool to create discussions for any accessibility problems you find. Each discussion should include:
68
69
- A clear description of the problem
69
70
- References to the appropriate section(s) of WCAG 2.2 that are violated
70
71
- Any relevant code snippets that illustrate the issue
Copy file name to clipboardExpand all lines: workflows/daily-backlog-burner.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,9 @@ timeout_minutes: 30
11
11
network: defaults
12
12
13
13
safe-outputs:
14
-
create-issue:
14
+
create-discussion:
15
15
title-prefix: "${{ github.workflow }}"
16
+
category: "ideas"
16
17
max: 3
17
18
add-comment:
18
19
target: "*"# all issues and PRs
@@ -36,7 +37,7 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
36
37
37
38
1. Backlog research (if not done before).
38
39
39
-
1a. Check carefully if an open issue with label "daily-backlog-burner-plan" exists using `search_issues`. If it does, read the issue and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If the issue doesn't exist, follow the steps below to create it:
40
+
1a. Check carefully if an open discussion with title starting with "${{ github.workflow }}" exists using `search_discussions`. If it does, read the discussion and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If the discussion doesn't exist, follow the steps below to create it:
40
41
41
42
1b. Do some deep research into the backlog in this repo.
42
43
- Read existing documentation, open issues, open pull requests, project files, dev guides in the repository.
@@ -49,17 +50,17 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
49
50
- Identify any patterns or common themes among the issues, such as recurring bugs, feature requests, or areas of improvement.
50
51
- Look for any issues that may be duplicates or closely related to each other, and consider whether they can be consolidated or linked together.
51
52
52
-
1c. Use this research to create an issue with title "${{ github.workflow }} - Research, Roadmap and Plan" and label "daily-backlog-burner-plan". This issue should be a comprehensive plan for dealing with the backlog in this repo, and summarize your findings from the backlog research, including any patterns or themes you identified, and your recommendations for addressing the backlog. Then exit this entire workflow.
53
+
1c. Use this research to create a discussion with title "${{ github.workflow }} - Research, Roadmap and Plan". This discussion should be a comprehensive plan for dealing with the backlog in this repo, and summarize your findings from the backlog research, including any patterns or themes you identified, and your recommendations for addressing the backlog. Then exit this entire workflow.
53
54
54
55
2. Goal selection: build an understanding of what to work on and select a part of the roadmap to pursue.
55
56
56
57
2a. You can now assume the repository is in a state where the steps in `.github/actions/daily-progress/build-steps/action.yml` have been run and is ready for you to work on features.
57
58
58
-
2b. Read the plan in the issue mentioned earlier, along with comments.
59
+
2b. Read the plan in the discussion mentioned earlier, along with comments.
59
60
60
61
2c. Check any existing open pull requests especially any opened by you starting with title "${{ github.workflow }}".
61
62
62
-
2d. If you think the plan is inadequate, and needs a refresh, update the planning issue by rewriting the actual body of the issue, ensuring you take into account any comments from maintainers. Add one single comment to the issue saying nothing but the plan has been updated with a one sentence explanation about why. Do not add comments to the issue, just update the body. Then continue to step 3e.
63
+
2d. If you think the plan is inadequate and needs a refresh, add a comment to the planning discussion with an updated plan, ensuring you take into account any comments from maintainers. Explain in the comment why the plan has been updated. Then continue to step 3e.
63
64
64
65
2e. Select a goal to pursue from the plan. Ensure that you have a good understanding of the code and the issues before proceeding. Don't work on areas that overlap with any open pull requests you identified.
65
66
@@ -83,10 +84,10 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
83
84
84
85
4c. After creation, check the pull request to ensure it is correct, includes all expected files, and doesn't include any unwanted files or changes. Make any necessary corrections by pushing further commits to the branch.
85
86
86
-
5. At the end of your work, add a very, very brief comment (at most two-sentences) to the issue from step 1a, saying you have worked on the particular goal, linking to any pull request you created, and indicating whether you made any progress or not.
87
+
5. At the end of your work, add a very, very brief comment (at most two-sentences) to the discussion from step 1a, saying you have worked on the particular goal, linking to any pull request you created, and indicating whether you made any progress or not.
87
88
88
89
6. If you encounter any unexpected failures or have questions, add
89
-
comments to the pull request or issue to seek clarification or assistance.
90
+
comments to the pull request or discussion to seek clarification or assistance.
90
91
91
92
<!-- You can customize prompting and tools in .github/workflows/agentics/daily-progress.config -->
Copy file name to clipboardExpand all lines: workflows/daily-dependency-updates.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,9 @@ network: defaults
13
13
safe-outputs:
14
14
create-pull-request:
15
15
draft: true
16
-
create-issue:
16
+
create-discussion:
17
17
title-prefix: "${{ github.workflow }}"
18
+
category: "announcements"
18
19
19
20
# Configure bash build commands here, or in .github/workflows/agentics/daily-dependency-updates.config.md
20
21
#
@@ -37,7 +38,7 @@ Your name is "${{ github.workflow }}". Your job is to act as an agentic coder fo
37
38
38
39
2. Create a new PR with title "${{ github.workflow }}". Try to bundle as many dependency updates as possible into one PR. Test the changes to ensure they work correctly, if the tests don't pass then work with a smaller number of updates until things are OK.
39
40
40
-
> NOTE: If you didn't make progress on particular dependency updates, create one overall issue saying what you've tried, ask for clarification if necessary, and add a link to a new branch containing any investigations you tried.
41
+
> NOTE: If you didn't make progress on particular dependency updates, create one overall discussion saying what you've tried, ask for clarification if necessary, and add a link to a new branch containing any investigations you tried.
41
42
42
43
<!-- You can customize prompting and tools in .github/workflows/agentics/daily-dependency-updates.config -->
Copy file name to clipboardExpand all lines: workflows/daily-perf-improver.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,9 @@ permissions: read-all
13
13
network: defaults
14
14
15
15
safe-outputs:
16
-
create-issue:
16
+
create-discussion:
17
17
title-prefix: "${{ github.workflow }}"
18
+
category: "ideas"
18
19
max: 5
19
20
add-comment:
20
21
target: "*"# can add a comment to any one single issue or pull request
@@ -59,7 +60,7 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
59
60
60
61
1. Performance research (if not done before).
61
62
62
-
1a. Check if an open issue with label "daily-perf-improver-plan" exists using `search_issues`. If it does, read the issue and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If the issue doesn't exist, follow the steps below to create it:
63
+
1a. Check if an open discussion with title starting with "${{ github.workflow }}" exists using `search_discussions`. If it does, read the discussion and its comments, paying particular attention to comments from repository maintainers, then continue to step 2. If the discussion doesn't exist, follow the steps below to create it:
63
64
64
65
1b. Do some deep research into performance matters in this repo.
65
66
- How is performance testing is done in the repo?
@@ -87,7 +88,7 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
87
88
Consider perf engineering fundamentals:
88
89
- You want to get to a zone where the engineers can run commands to get numbers towards some performance goal - with commands running reliably within 1min or so - and it can "see" the code paths associated with that. If you can achieve that, your engineers will be very good at finding low-hanging fruit to work towards the performance goals.
89
90
90
-
1b. Use this research to create an issue with title "${{ github.workflow }} - Research and Plan" and label "daily-perf-improver-plan", then exit this entire workflow.
91
+
1b. Use this research to create a discussion with title "${{ github.workflow }} - Research and Plan", then exit this entire workflow.
91
92
92
93
2. Build steps inference and configuration (if not done before)
93
94
@@ -107,11 +108,11 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
107
108
108
109
3a. You can now assume the repository is in a state where the steps in `.github/actions/daily-perf-improver/build-steps/action.yml` have been run and is ready for performance testing, running micro-benchmarks etc. Read this file to understand what has been done. Read any output files such as `build-steps.log` to understand what has been done. If the build steps failed, work out what needs to be fixed in `.github/actions/daily-perf-improver/build-steps/action.yml` and make a pull request for those fixes and exit the entire workflow.
109
110
110
-
3b. Read the plan in the issue mentioned earlier, along with comments.
111
+
3b. Read the plan in the discussion mentioned earlier, along with comments.
111
112
112
113
3c. Check for existing open pull requests that are related to performance improvements especially any opened by you starting with title "${{ github.workflow }}". Don't repeat work from any open pull requests.
113
114
114
-
3d. If you think the plan is inadequate, and needs a refresh, update the planning issue by rewriting the actual body of the issue, ensuring you take into account any comments from maintainers. Add one single comment to the issue saying nothing but the plan has been updated with a one sentence explanation about why. Do not add comments to the issue, just update the body. Then continue to step 3e.
115
+
3d. If you think the plan is inadequate and needs a refresh, add a comment to the planning discussion with an updated plan, ensuring you take into account any comments from maintainers. Explain in the comment why the plan has been updated. Then continue to step 3e.
115
116
116
117
3e. Select a performance improvement goal to pursue from the plan. Ensure that you have a good understanding of the code and the performance issues before proceeding.
117
118
@@ -170,7 +171,7 @@ Your name is ${{ github.workflow }}. Your job is to act as an agentic coder for
170
171
171
172
5d. After creation, check the pull request to ensure it is correct, includes all expected files, and doesn't include any unwanted files or changes. Make any necessary corrections by pushing further commits to the branch.
172
173
173
-
6. At the end of your work, add a very, very brief comment (at most two-sentences) to the issue from step 1a, saying you have worked on the particular goal, linking to any pull request you created, and indicating whether you made any progress or not.
174
+
6. At the end of your work, add a very, very brief comment (at most two-sentences) to the discussion from step 1a, saying you have worked on the particular goal, linking to any pull request you created, and indicating whether you made any progress or not.
174
175
175
176
<!-- You can customize prompting and tools in .github/workflows/agentics/daily-perf-improver.config -->
Copy file name to clipboardExpand all lines: workflows/daily-plan.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,9 @@ permissions: read-all
13
13
network: defaults
14
14
15
15
safe-outputs:
16
-
create-issue: # needed to create the project plan issue
16
+
create-discussion: # needed to create the project plan discussion
17
17
title-prefix: "${{ github.workflow }}"
18
-
update-issue: # needed to update the project plan issue if it already exists
19
-
target: "*"# can update one single issue
20
-
body: # can update the issue body only
18
+
category: "announcements"
21
19
22
20
tools:
23
21
web-fetch:
@@ -34,21 +32,21 @@ Your job is to act as a planner for the GitHub repository ${{ github.repository
34
32
35
33
1. First study the state of the repository including, open issues, pull requests, completed issues.
36
34
37
-
1a. As part of this, look for the open issue labelled "project-plan", which is the existing project plan. Read the plan, and any comments on the plan. If no issue is labelled "project-plan" ignore this step.
35
+
1a. As part of this, look for the open discussion with title starting with "${{ github.workflow }}", which is the existing project plan. Read the plan, and any comments on the plan. If no such discussion exists, ignore this step.
38
36
39
37
1b. You can read code, search the web and use other tools to help you understand the project and its requirements.
40
38
41
39
2. Formulate a plan for the remaining work to achieve the objectives of the project.
42
40
43
41
2a. The project plan should be a clear, concise, succinct summary of the current state of the project, including the issues that need to be completed, their priority, and any dependencies between them.
44
42
45
-
2b. The project plan should be written into the issue body itself, not as a comment. If comments have been added to the project plan, take them into account and note this in the project plan. Never add comments to the project plan issue.
43
+
2b. The project plan should be written into the discussion body itself, not as a comment. If comments have been added to the project plan, take them into account and note this in the project plan. Never add comments to the project plan discussion.
46
44
47
45
2c. In the plan, list suggested issues to create to match the proposed updated plan. Don't create any issues, just list the suggestions. Do this by showing `gh` commands to create the issues with labels and complete bodies, but don't actually create them. Don't include suggestions for issues that already exist, only new things required as part of the plan!
48
46
49
-
3.You will either create or update the planning issue so it contains a project plan in its body.
47
+
3.Create a new planning discussion with the project plan in its body.
50
48
51
-
3a. If in step (1a) you found a "project plan" issue, update its body with the project plan. If in step (1a) you didn't find a "project issue", create one with an appropriate title starting with "${{ github.workflow }}", using the project plan as the body, and ensure the issue is labelled with "project-plan".
49
+
3a. Create a discussion with an appropriate title starting with "${{ github.workflow }}" and the current date (e.g., "Daily Plan - 2025-10-10"), using the project plan as the body.
52
50
53
51
54
52
<!-- You can customize prompting and tools in .github/workflows/agentics/daily-plan.config -->
0 commit comments