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
22 changes: 22 additions & 0 deletions docs/src/content/docs/reference/glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,16 @@ safe-outputs:
upload-assets:
```

### Minimize Comment
A safe output capability that allows workflows to hide or minimize GitHub comments without requiring write permissions. When minimized, comments are classified as SPAM. Requires GraphQL node IDs (format: `IC_kwDOABCD123456`) to identify comments. Useful for content moderation workflows.

```yaml
safe-outputs:
minimize-comment:
max: 5
target-repo: "owner/repo"
```

## Workflow Components

### Engine
Expand Down Expand Up @@ -128,6 +138,18 @@ Controls over what external domains and services a workflow can access. Configur
### Imports
Reusable workflow components that can be shared across multiple workflows. Specified in the `imports:` field. Can include tool configurations, common instructions, or security guidelines stored in separate files.

### Labels
Optional workflow metadata containing an array of strings for categorization and organization. Labels help organize workflows by topic, purpose, or team, and enable filtering workflows in the CLI using the `--label` flag.

```yaml
labels: ["automation", "ci", "diagnostics"]
```

View workflows with specific labels:
```bash
gh aw status --label automation
```

## GitHub and Infrastructure Terms

### GitHub Actions
Expand Down