Skip to content
Merged
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
9 changes: 9 additions & 0 deletions docs/src/content/docs/reference/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,15 @@ gh aw status --label automation
### GitHub Actions
GitHub's built-in automation platform that runs workflows in response to repository events. Agentic workflows compile to GitHub Actions YAML format, leveraging the existing infrastructure for execution, permissions, and secrets management.

### GitHub Projects (Projects v2)
GitHub's project management and tracking system that organizes issues and pull requests using customizable boards, tables, and roadmaps. Projects v2 provides flexible custom fields (text, number, date, single-select, iteration), automation, and GraphQL API access. Agentic workflows can manage project boards using the `update-project` safe output to add items, update fields, and maintain campaign tracking. Requires organization-level Projects permissions for API access.

```yaml
safe-outputs:
update-project:
github-token: ${{ secrets.PROJECTS_PAT }}
```

### GitHub Actions Secret
A secure, encrypted variable stored in repository or organization settings. Holds sensitive values like API keys or tokens. Access in workflows using `${{ secrets.SECRET_NAME }}` syntax.

Expand Down