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
**`--approve` flag:** When compiling a workflow that already has a lock file, the compiler enforces *safe update mode* — any newly added secrets or custom actions not present in the previous manifest require explicit approval. Pass `--approve` to accept these changes and regenerate the manifest baseline. On first compile (no existing lock file), enforcement is skipped automatically and `--approve` is not needed.
269
269
@@ -292,7 +292,7 @@ gh aw validate --dir custom/workflows # Validate from custom directory
292
292
gh aw validate --engine copilot # Override AI engine
All linters (`zizmor`, `actionlint`, `poutine`), `--validate`, and `--no-emit` are always-on defaults and cannot be disabled. Accepts the same workflow ID format as `compile`.
298
298
@@ -320,7 +320,7 @@ Execute workflows immediately in GitHub Actions. Displays workflow URL for track
320
320
```bash wrap
321
321
gh aw run workflow # Run workflow
322
322
gh aw run workflow1 workflow2 # Run multiple workflows
323
-
gh aw run workflow --repeat 3 # Repeat 3 times
323
+
gh aw run workflow --repeat 3 # Run 4 times total (1 initial + 3 repeats)
324
324
gh aw run workflow --push # Auto-commit, push, and dispatch workflow
325
325
gh aw run workflow --push --ref main # Push to specific branch
326
326
gh aw run workflow --json # Output triggered workflow results as JSON
@@ -400,7 +400,7 @@ gh aw logs --train # Train on last 10 runs
400
400
gh aw logs my-workflow --train -c 50 # Train on up to 50 runs of a specific workflow
0 commit comments