You'll ask an agent in the GitHub Copilot app or Agents tab to create and validate daily-report-status.md, then review and merge its pull request.
- Your practice repository is connected to the GitHub Copilot app or available in the Agents tab
- You have an active GitHub Copilot plan
- You completed No Installation Needed — GitHub UI Path and merged the repository-initialization pull request
Open your practice repository in the GitHub Copilot app and start a session in Interactive mode so you can steer the work, or open the repository's Copilot or Agents tab and start a new session.
Important
Agents tab: You must start your message with /agentic-workflows to invoke the skill. Without this prefix the agent does not have agentic workflow authoring context and may not produce a valid workflow. Skip to the Agents tab prompt further down on this page — it already includes the prefix.
GitHub Copilot app — paste this prompt:
Using the agentic-workflows skill, create a workflow using https://raw.githubusercontent.com/github/gh-aw/main/create.md
The workflow must:
- Be named "Daily Report Status"
- Support manual runs with [`workflow_dispatch`](https://github.github.com/gh-aw/reference/triggers/)
- Use `contents: read`, `issues: read`, and `copilot-requests: write`
- Allow at most one comment and at most one new issue through safe outputs (https://github.github.com/gh-aw/reference/safe-outputs/)
- Search open issues for the issue with the most 👍 reactions and comment:
"This issue has the most community support! We'll prioritise it in our next planning session."
- Create an issue titled "Community Voting Test" and post the same comment if no open issues exist
Run `gh aw compile` in the session workspace, fix any errors, commit the source and generated lock file, and open a pull request. Show me the diff before merging.
Agents tab — paste this prompt instead:
/agentic-workflows Follow the prompt above to create the Daily Report Status workflow.
Note
The agentic-workflows skill is installed during Step 6c. If it is not yet available in your repository, return to that step and merge the initialization pull request first.
The agent runs validation in its isolated session workspace. You do not need a terminal for this path. Before you approve the merge, the agent presents the file changes in its session response for you to review.
Note
To keep gh aw compile --watch running while you edit, use a local or Codespaces terminal instead.
- Confirm
.github/workflows/daily-report-status.mdcontains the requested trigger, permissions, safe outputs, and task. - Confirm
.github/workflows/daily-report-status.lock.ymlexists. - Ask the agent to correct anything that does not match the prompt.
- Merge the pull request into
main.
-
.github/workflows/daily-report-status.mdexists in the repository -
.github/skills/agentic-workflows/exists in the repository from the initialization step - The agent validated the workflow in its session workspace
- You reviewed the source and generated lock file
- You merged the pull request into
main - You are ready to choose the workflow's billing and authentication method
Next: Confirm Model Access