-
Notifications
You must be signed in to change notification settings - Fork 352
Support configurable runs-on for the generated agentics-maintenance workflow
#26481
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -107,10 +107,40 @@ safe-outputs: | |||||
| > [!NOTE] | ||||||
| > `runs-on` controls only the main agent job. `runs-on-slim` controls all framework/generated jobs. `safe-outputs.runs-on` still takes precedence over `runs-on-slim` for safe-output jobs specifically. | ||||||
|
|
||||||
| ## Configuring the maintenance workflow runner | ||||||
|
|
||||||
| The generated `agentics-maintenance.yml` workflow defaults to `ubuntu-slim` for all its jobs. To use a self-hosted runner for maintenance jobs, set `runs_on` in `.github/workflows/aw.json`: | ||||||
|
||||||
| The generated `agentics-maintenance.yml` workflow defaults to `ubuntu-slim` for all its jobs. To use a self-hosted runner for maintenance jobs, set `runs_on` in `.github/workflows/aw.json`: | |
| The generated `agentics-maintenance.yml` workflow uses mixed defaults: most jobs default to `ubuntu-slim`, while `validate_workflows` defaults to `ubuntu-latest`. To use a self-hosted runner for maintenance jobs, set `runs_on` in `.github/workflows/aw.json`; when configured, it overrides the runner for all maintenance workflow jobs: |
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.
This line states the default maintenance runner is
ubuntu-slim, but the generated workflow defaultsvalidate_workflowstoubuntu-latest(unlessmaintenance.runs_onis set). Please update the documentation to reflect the actual defaults so users understand why they may still seeubuntu-latestin the workflow.