-
Notifications
You must be signed in to change notification settings - Fork 46
Document MCP server configuration analysis: alpine:latest vs alpine:3.20 #13458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -435,8 +435,13 @@ The YAML frontmatter supports these fields: | |
| reviewers: [user1, copilot] # Optional: reviewers (use 'copilot' for bot) | ||
| draft: true # Optional: create as draft PR (defaults to true) | ||
| if-no-changes: "warn" # Optional: "warn" (default), "error", or "ignore" | ||
| expires: 7 # Optional: auto-close after 7 days (supports: 2h, 7d, 2w, 1m, 1y; min: 2h) | ||
| auto-merge: false # Optional: enable auto-merge when checks pass (default: false) | ||
| target-repo: "owner/repo" # Optional: cross-repository | ||
| ``` | ||
|
|
||
| **Auto-Expiration**: The `expires` field auto-closes PRs after a time period. Supports integers (days) or relative formats (2h, 7d, 2w, 1m, 1y). Minimum duration: 2 hours. Only for same-repo PRs without target-repo. Generates `agentics-maintenance.yml` workflow. | ||
|
|
||
|
Comment on lines
+438
to
+444
|
||
| When using `output.create-pull-request`, the main job does **not** need `contents: write` or `pull-requests: write` permissions since PR creation is handled by a separate job with appropriate permissions. | ||
| - `create-pull-request-review-comment:` - Safe PR review comment creation on code lines | ||
| ```yaml | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation states that the minimum duration for the
expiresfield is 2 hours, but this restriction applies inconsistently across the documentation. For create-issue (line 364), no minimum duration is mentioned, while for create-pull-request (line 438), it explicitly states "min: 2h". Based on the code in pkg/workflow/time_delta.go:442, the 2-hour minimum applies to all expires fields. The create-issue documentation should also include this minimum duration constraint for consistency.