Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import WorkflowHero from '../../components/WorkflowHero.astro';

<WorkflowHero />

Wake up to ready-to-review repository improvements-automated triage, CI insights, docs updates, and test enhancements from simple markdown workflows.
Wake up to ready-to-review repository improvementsautomated triage, CI insights, docs updates, and test enhancements from simple markdown workflows.

GitHub Agentic Workflows deliver this: repository automation, running the coding agents you know and love, in GitHub Actions, with strong guardrails and security-first design principles.

Expand Down
9 changes: 8 additions & 1 deletion docs/src/content/docs/setup/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The wizard generates a compiled workflow file (`.lock.yml`) automatically — yo

> [!NOTE]
> **Setting up `COPILOT_GITHUB_TOKEN`?**
> 1. [Create a fine-grained PAT](https://github.com/settings/personal-access-tokens/new) under your user account.
> 1. [Create a fine-grained Personal Access Token (PAT)](https://github.com/settings/personal-access-tokens/new) under your user account.
> 2. Under **Permissions → Account permissions**, set **Copilot Requests** to **Read**, then generate the token.
> 3. Add it as a repository secret from your repository root with `gh secret set COPILOT_GITHUB_TOKEN < /path/to/token.txt`, or use the GitHub UI. See [Authentication](/gh-aw/reference/auth/#copilot_github_token) for more detail.
>
Expand All @@ -94,6 +94,13 @@ The wizard generates a compiled workflow file (`.lock.yml`) automatically — yo

An automated workflow run can take 2-3 minutes.

To watch the run while it's in flight:

- **From the browser**: open the **Actions** tab of your repository and select the most recent workflow run.
- **From the CLI**: run `gh aw status` to list workflow state, or `gh run watch` to stream the latest run.

When the run succeeds, a new issue titled with "Daily Repo Report" appears in the **Issues** tab of your repository. If the run fails, open the run from the **Actions** tab to view step logs and error output.

Once your initial run is complete, a new issue will be created in your repository with a "Daily Repo Report". The report will be automatically generated and will analyze:

- Recent repository activity (issues, PRs, discussions, releases, code changes)
Expand Down
Loading