diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3a8d6f0fa7..f0fe076e34 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -20,3 +20,7 @@ updates: directory: /.github/workflows schedule: interval: weekly +- package-ecosystem: gomod + directory: /.github/workflows + schedule: + interval: weekly diff --git a/.github/workflows/go.mod b/.github/workflows/go.mod index b322d484db..a537eb2f9b 100644 --- a/.github/workflows/go.mod +++ b/.github/workflows/go.mod @@ -1,3 +1,5 @@ module github.com/github/gh-aw-workflows-deps - go 1.21 + +require ( +) diff --git a/docs/src/content/docs/reference/frontmatter-full.md b/docs/src/content/docs/reference/frontmatter-full.md index 004d5ad6e0..1387af92f1 100644 --- a/docs/src/content/docs/reference/frontmatter-full.md +++ b/docs/src/content/docs/reference/frontmatter-full.md @@ -1671,11 +1671,6 @@ tools: # (optional) create-orphan: true - # Campaign ID for campaign-specific repo-memory (optional, used to correlate - # memory with campaign workflows) - # (optional) - campaign-id: "example-value" - # Option 4: Array of repo-memory configurations for multiple memory locations repo-memory: [] # Array items: object @@ -1934,11 +1929,10 @@ safe-outputs: # github-token override). NOTE: Projects v2 requires a Personal Access Token (PAT) # or GitHub App token with appropriate permissions; the GITHUB_TOKEN cannot be # used for Projects v2. Safe output items produced by the agent use - # type=update_project Configuration also supports an optional views array for + # type=update_project. Configuration also supports an optional views array for # declaring project views to create. Safe output items produced by the agent use # type=update_project and may include: project (board name), content_type - # (issue|pull_request), content_number, fields, campaign_id, and - # create_if_missing. + # (issue|pull_request), content_number, fields, and create_if_missing. update-project: # Maximum number of project operations to perform (default: 10). Each operation # may add a project item, or update its fields. @@ -1961,7 +1955,7 @@ safe-outputs: # (optional) views: [] # Array items: - # The name of the view (e.g., 'Sprint Board', 'Campaign Roadmap') + # The name of the view (e.g., 'Sprint Board', 'Roadmap') name: "My Workflow" # The layout type of the view @@ -1981,12 +1975,11 @@ safe-outputs: # (optional) description: "Description of the workflow" - # Optional array of project custom fields to create up-front. Useful for campaign - # projects that require a fixed set of fields. + # Optional array of project custom fields to create up-front. # (optional) field-definitions: [] # Array items: - # The field name to create (e.g., 'status', 'campaign_id') + # The field name to create (e.g., 'status', 'priority') name: "My Workflow" # The GitHub Projects v2 custom field type @@ -2030,8 +2023,8 @@ safe-outputs: # (optional) target-owner: "example-value" - # Optional prefix for auto-generated project titles (default: 'Campaign'). When - # the agent doesn't provide a title, the project title is auto-generated as + # Optional prefix for auto-generated project titles (default: 'Project'). When the + # agent doesn't provide a title, the project title is auto-generated as # ': ' or ' #' based on the # issue context. # (optional) @@ -2043,7 +2036,7 @@ safe-outputs: # (optional) views: [] # Array items: - # The name of the view (e.g., 'Sprint Board', 'Campaign Roadmap') + # The name of the view (e.g., 'Sprint Board', 'Roadmap') name: "My Workflow" # The layout type of the view @@ -2064,11 +2057,11 @@ safe-outputs: description: "Description of the workflow" # Optional array of project custom fields to create automatically after project - # creation. Useful for campaign projects that require a fixed set of fields. + # creation. # (optional) field-definitions: [] # Array items: - # The field name to create (e.g., 'Campaign Id', 'Priority') + # The field name to create (e.g., 'Priority', 'Classification') name: "My Workflow" # The GitHub Projects v2 custom field type @@ -2094,7 +2087,7 @@ safe-outputs: # progress. Requires a Personal Access Token (PAT) or GitHub App token with # Projects: Read+Write permission. The GITHUB_TOKEN cannot be used for Projects # v2. Status updates are created on the specified project board and appear in the - # Updates tab. Typically used by campaign orchestrators to post run summaries with + # Updates tab. Typically used by orchestrators to post run summaries with # progress, findings, and next steps. create-project-status-update: # Maximum number of status updates to create (default: 1). Typically 1 per diff --git a/pkg/cli/logs_command_test.go b/pkg/cli/logs_command_test.go index 25ca2ccae5..70398f04e2 100644 --- a/pkg/cli/logs_command_test.go +++ b/pkg/cli/logs_command_test.go @@ -248,7 +248,7 @@ func TestLogsCommandHelpText(t *testing.T) { // Verify long description contains expected sections expectedSections := []string{ "Download workflow run logs", - "Campaign Orchestrator Usage", + "Orchestrator Usage", "Examples:", "gh aw logs", }