diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index 39a24f45ebc..9d6d1468afb 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -381,7 +381,6 @@ name: "Layout Specification Maintainer" "on": schedule: - cron: "0 7 * * 1-5" - # Friendly format: daily at 09:00 workflow_dispatch: null permissions: read-all diff --git a/docs/src/content/docs/reference/frontmatter-full.md b/docs/src/content/docs/reference/frontmatter-full.md index 18fed2f1763..97d618407e0 100644 --- a/docs/src/content/docs/reference/frontmatter-full.md +++ b/docs/src/content/docs/reference/frontmatter-full.md @@ -572,7 +572,9 @@ on: # Time when workflow should stop running. Supports multiple formats: absolute # dates (YYYY-MM-DD HH:MM:SS, June 1 2025, 1st June 2025, 06/01/2025, etc.) or - # relative time deltas (+25h, +3d, +1d12h30m) + # relative time deltas (+25h, +3d, +1d12h30m). Maximum values for time deltas: + # 12mo, 52w, 365d, 8760h (365 days). Note: Minute unit 'm' is not allowed for + # stop-after; minimum unit is hours 'h'. # (optional) stop-after: "example-value" @@ -2070,7 +2072,7 @@ safe-outputs: # Option 1: Configuration for creating GitHub pull request review comments from # agentic workflow output create-pull-request-review-comment: - # Maximum number of review comments to create (default: 1) + # Maximum number of review comments to create (default: 10) # (optional) max: 1 diff --git a/docs/src/content/docs/reference/safe-outputs.md b/docs/src/content/docs/reference/safe-outputs.md index 2b3a7b40889..de572f0ce2e 100644 --- a/docs/src/content/docs/reference/safe-outputs.md +++ b/docs/src/content/docs/reference/safe-outputs.md @@ -38,7 +38,7 @@ This declares that the workflow should create at most one new issue. | [**Assign Milestone**](#assign-milestone-assign-milestone) | `assign-milestone:` | Assign issues to milestones | 1 | ✅ | | [**Create PR**](#pull-request-creation-create-pull-request) | `create-pull-request:` | Create pull requests with code changes | 1 | ✅ | | [**Close PR**](#close-pull-request-close-pull-request) | `close-pull-request:` | Close pull requests without merging | 10 | ✅ | -| [**PR Review Comments**](#pr-review-comments-create-pull-request-review-comment) | `create-pull-request-review-comment:` | Create review comments on code lines | 1 | ✅ | +| [**PR Review Comments**](#pr-review-comments-create-pull-request-review-comment) | `create-pull-request-review-comment:` | Create review comments on code lines | 10 | ✅ | | [**Create Discussion**](#discussion-creation-create-discussion) | `create-discussion:` | Create GitHub discussions | 1 | ✅ | | [**Close Discussion**](#close-discussion-close-discussion) | `close-discussion:` | Close discussions with comment and resolution | 1 | ✅ | | [**Create Agent Task**](#agent-task-creation-create-agent-task) | `create-agent-task:` | Create Copilot agent tasks | 1 | ✅ | @@ -393,7 +393,7 @@ Creates review comments on specific code lines in PRs. Supports single-line and ```yaml wrap safe-outputs: create-pull-request-review-comment: - max: 3 # max comments (default: 1) + max: 3 # max comments (default: 10) side: "RIGHT" # "LEFT" or "RIGHT" (default: "RIGHT") target: "*" # "triggering" (default), "*", or number target-repo: "owner/repo" # cross-repository diff --git a/pkg/parser/schemas/main_workflow_schema.json b/pkg/parser/schemas/main_workflow_schema.json index 7c641aa21df..0b39ee2af9d 100644 --- a/pkg/parser/schemas/main_workflow_schema.json +++ b/pkg/parser/schemas/main_workflow_schema.json @@ -3626,7 +3626,7 @@ "properties": { "max": { "type": "integer", - "description": "Maximum number of review comments to create (default: 1)", + "description": "Maximum number of review comments to create (default: 10)", "minimum": 1, "maximum": 100 },