From fee7212b2ea4922ff22961d8d2386b805ca833f0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Mar 2026 07:58:17 +0000 Subject: [PATCH 1/4] Initial plan From 82c0a951fd362d616ea758f8b62cf502d94e1f25 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Mar 2026 08:20:38 +0000 Subject: [PATCH 2/4] Fix buildCustomJobs() to extract silently-dropped job fields (name, timeout-minutes, concurrency, env, container, services, continue-on-error)" Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/compiler_jobs.go | 99 ++++++++++ pkg/workflow/compiler_jobs_test.go | 281 +++++++++++++++++++++++++++++ pkg/workflow/jobs.go | 6 + 3 files changed, 386 insertions(+) diff --git a/pkg/workflow/compiler_jobs.go b/pkg/workflow/compiler_jobs.go index 53c911b225..d53d837873 100644 --- a/pkg/workflow/compiler_jobs.go +++ b/pkg/workflow/compiler_jobs.go @@ -527,6 +527,105 @@ func (c *Compiler) buildCustomJobs(data *WorkflowData, activationJobCreated bool } } + // Extract name (display name) for custom jobs + if name, hasName := configMap["name"]; hasName { + if nameStr, ok := name.(string); ok { + job.DisplayName = nameStr + } + } + + // Extract timeout-minutes for custom jobs + if timeout, hasTimeout := configMap["timeout-minutes"]; hasTimeout { + switch v := timeout.(type) { + case int: + job.TimeoutMinutes = v + case uint64: + if v <= uint64(^uint(0)>>1) { + job.TimeoutMinutes = int(v) + } + case float64: + job.TimeoutMinutes = int(v) + } + } + + // Extract concurrency for custom jobs + if concurrency, hasConcurrency := configMap["concurrency"]; hasConcurrency { + switch v := concurrency.(type) { + case string: + job.Concurrency = "concurrency: " + v + case map[string]any: + yamlBytes, err := yaml.Marshal(v) + if err != nil { + return fmt.Errorf("failed to convert concurrency to YAML for job '%s': %w", jobName, err) + } + lines := strings.Split(strings.TrimSpace(string(yamlBytes)), "\n") + var formattedConcurrency strings.Builder + formattedConcurrency.WriteString("concurrency:\n") + for _, line := range lines { + formattedConcurrency.WriteString(" " + line + "\n") + } + job.Concurrency = formattedConcurrency.String() + } + } + + // Extract env for custom jobs + if env, hasEnv := configMap["env"]; hasEnv { + if envMap, ok := env.(map[string]any); ok { + job.Env = make(map[string]string) + for key, val := range envMap { + if valStr, ok := val.(string); ok { + job.Env[key] = valStr + } else { + compilerJobsLog.Printf("Warning: env '%s' in job '%s' has non-string value (type: %T), ignoring", key, jobName, val) + } + } + } + } + + // Extract container for custom jobs + if container, hasContainer := configMap["container"]; hasContainer { + switch v := container.(type) { + case string: + job.Container = "container: " + v + case map[string]any: + yamlBytes, err := yaml.Marshal(v) + if err != nil { + return fmt.Errorf("failed to convert container to YAML for job '%s': %w", jobName, err) + } + lines := strings.Split(strings.TrimSpace(string(yamlBytes)), "\n") + var formattedContainer strings.Builder + formattedContainer.WriteString("container:\n") + for _, line := range lines { + formattedContainer.WriteString(" " + line + "\n") + } + job.Container = formattedContainer.String() + } + } + + // Extract services for custom jobs + if services, hasServices := configMap["services"]; hasServices { + if servicesMap, ok := services.(map[string]any); ok { + yamlBytes, err := yaml.Marshal(servicesMap) + if err != nil { + return fmt.Errorf("failed to convert services to YAML for job '%s': %w", jobName, err) + } + lines := strings.Split(strings.TrimSpace(string(yamlBytes)), "\n") + var formattedServices strings.Builder + formattedServices.WriteString("services:\n") + for _, line := range lines { + formattedServices.WriteString(" " + line + "\n") + } + job.Services = formattedServices.String() + } + } + + // Extract continue-on-error for custom jobs + if continueOnError, hasCOE := configMap["continue-on-error"]; hasCOE { + if coeVal, ok := continueOnError.(bool); ok { + job.ContinueOnError = coeVal + } + } + // Extract outputs for custom jobs if outputs, hasOutputs := configMap["outputs"]; hasOutputs { if outputsMap, ok := outputs.(map[string]any); ok { diff --git a/pkg/workflow/compiler_jobs_test.go b/pkg/workflow/compiler_jobs_test.go index d084c3894b..e1cd592b31 100644 --- a/pkg/workflow/compiler_jobs_test.go +++ b/pkg/workflow/compiler_jobs_test.go @@ -2352,3 +2352,284 @@ func TestBuildCustomJobsRunsOnForms(t *testing.T) { }) } } + +// TestBuildCustomJobsNewSimpleFields tests extraction of simple job fields via CompileWorkflow +func TestBuildCustomJobsNewSimpleFields(t *testing.T) { + tmpDir := testutil.TempDir(t, "new-simple-fields-test") + + frontmatter := `--- +on: push +permissions: + contents: read +engine: copilot +strict: false +jobs: + featured_job: + runs-on: ubuntu-latest + name: My Display Name + timeout-minutes: 30 + continue-on-error: true + concurrency: my-group + env: + MY_VAR: hello + OTHER_VAR: world + steps: + - run: echo "test" +--- + +# Test Workflow + +Test content` + + testFile := filepath.Join(tmpDir, "test.md") + if err := os.WriteFile(testFile, []byte(frontmatter), 0644); err != nil { + t.Fatal(err) + } + + compiler := NewCompiler() + if err := compiler.CompileWorkflow(testFile); err != nil { + t.Fatalf("CompileWorkflow() error: %v", err) + } + + lockFile := filepath.Join(tmpDir, "test.lock.yml") + content, err := os.ReadFile(lockFile) + if err != nil { + t.Fatalf("Failed to read lock file: %v", err) + } + + yamlStr := string(content) + + // Verify display name + if !strings.Contains(yamlStr, "name: My Display Name") { + t.Errorf("Expected 'name: My Display Name' in output, got:\n%s", yamlStr) + } + + // Verify timeout-minutes + if !strings.Contains(yamlStr, "timeout-minutes: 30") { + t.Errorf("Expected 'timeout-minutes: 30' in output, got:\n%s", yamlStr) + } + + // Verify continue-on-error + if !strings.Contains(yamlStr, "continue-on-error: true") { + t.Errorf("Expected 'continue-on-error: true' in output, got:\n%s", yamlStr) + } + + // Verify concurrency (string form) + if !strings.Contains(yamlStr, "concurrency: my-group") { + t.Errorf("Expected 'concurrency: my-group' in output, got:\n%s", yamlStr) + } + + // Verify env variables + if !strings.Contains(yamlStr, "MY_VAR: hello") { + t.Errorf("Expected 'MY_VAR: hello' in output, got:\n%s", yamlStr) + } + if !strings.Contains(yamlStr, "OTHER_VAR: world") { + t.Errorf("Expected 'OTHER_VAR: world' in output, got:\n%s", yamlStr) + } +} + +// TestBuildCustomJobsWithContainerAndServices tests extraction of container and services fields +func TestBuildCustomJobsWithContainerAndServices(t *testing.T) { + compiler := NewCompiler() + compiler.jobManager = NewJobManager() + + data := &WorkflowData{ + Name: "Test Workflow", + AI: "copilot", + RunsOn: "runs-on: ubuntu-latest", + Jobs: map[string]any{ + "services_job": map[string]any{ + "runs-on": "ubuntu-latest", + "container": map[string]any{ + "image": "node:18", + }, + "services": map[string]any{ + "redis": map[string]any{ + "image": "redis", + "ports": []any{"6379:6379"}, + }, + }, + "steps": []any{ + map[string]any{"run": "echo 'test'"}, + }, + }, + }, + } + + err := compiler.buildCustomJobs(data, false) + if err != nil { + t.Fatalf("buildCustomJobs() returned error: %v", err) + } + + job, exists := compiler.jobManager.GetJob("services_job") + if !exists { + t.Fatal("Expected services_job to be added") + } + + // Verify container map form + if !strings.Contains(job.Container, "container:") { + t.Errorf("Expected 'container:' header, got: %q", job.Container) + } + if !strings.Contains(job.Container, "image: node:18") { + t.Errorf("Expected 'image: node:18' in container, got: %q", job.Container) + } + + // Verify services + if !strings.Contains(job.Services, "services:") { + t.Errorf("Expected 'services:' header, got: %q", job.Services) + } + if !strings.Contains(job.Services, "redis:") { + t.Errorf("Expected 'redis:' in services, got: %q", job.Services) + } +} + +// TestBuildCustomJobsMapConcurrencyAndContainer tests map-form concurrency and string container +func TestBuildCustomJobsMapConcurrencyAndContainer(t *testing.T) { + compiler := NewCompiler() + compiler.jobManager = NewJobManager() + + data := &WorkflowData{ + Name: "Test Workflow", + AI: "copilot", + RunsOn: "runs-on: ubuntu-latest", + Jobs: map[string]any{ + "map_fields_job": map[string]any{ + "runs-on": "ubuntu-latest", + "concurrency": map[string]any{ + "group": "my-group", + "cancel-in-progress": true, + }, + "container": "node:18", + "steps": []any{ + map[string]any{"run": "echo 'test'"}, + }, + }, + }, + } + + err := compiler.buildCustomJobs(data, false) + if err != nil { + t.Fatalf("buildCustomJobs() returned error: %v", err) + } + + job, exists := compiler.jobManager.GetJob("map_fields_job") + if !exists { + t.Fatal("Expected map_fields_job to be added") + } + + // Verify concurrency map form + if !strings.Contains(job.Concurrency, "concurrency:") { + t.Errorf("Expected 'concurrency:' header, got: %q", job.Concurrency) + } + if !strings.Contains(job.Concurrency, "group: my-group") { + t.Errorf("Expected 'group: my-group' in concurrency, got: %q", job.Concurrency) + } + + // Verify container string form + if job.Container != "container: node:18" { + t.Errorf("Expected 'container: node:18', got: %q", job.Container) + } +} + +// TestBuildCustomJobsAllNewFieldsViaWorkflowData tests all 7 new fields via direct WorkflowData +func TestBuildCustomJobsAllNewFieldsViaWorkflowData(t *testing.T) { + compiler := NewCompiler() + compiler.jobManager = NewJobManager() + + data := &WorkflowData{ + Name: "Test Workflow", + AI: "copilot", + RunsOn: "runs-on: ubuntu-latest", + Jobs: map[string]any{ + "full_job": map[string]any{ + "runs-on": "ubuntu-latest", + "name": "My Display Name", + "timeout-minutes": 30, + "continue-on-error": true, + "concurrency": "ci-group", + "env": map[string]any{ + "KEY1": "val1", + "KEY2": "val2", + }, + "container": map[string]any{ + "image": "ubuntu:22.04", + }, + "services": map[string]any{ + "postgres": map[string]any{ + "image": "postgres:15", + }, + }, + "steps": []any{ + map[string]any{"run": "echo 'test'"}, + }, + }, + }, + } + + err := compiler.buildCustomJobs(data, false) + if err != nil { + t.Fatalf("buildCustomJobs() returned error: %v", err) + } + + job, exists := compiler.jobManager.GetJob("full_job") + if !exists { + t.Fatal("Expected full_job to be added") + } + + // Verify all 7 fields + if job.DisplayName != "My Display Name" { + t.Errorf("DisplayName = %q, want 'My Display Name'", job.DisplayName) + } + if job.TimeoutMinutes != 30 { + t.Errorf("TimeoutMinutes = %d, want 30", job.TimeoutMinutes) + } + if !job.ContinueOnError { + t.Error("Expected ContinueOnError to be true") + } + if job.Concurrency != "concurrency: ci-group" { + t.Errorf("Concurrency = %q, want 'concurrency: ci-group'", job.Concurrency) + } + if job.Env["KEY1"] != "val1" { + t.Errorf("Env[KEY1] = %q, want 'val1'", job.Env["KEY1"]) + } + if job.Env["KEY2"] != "val2" { + t.Errorf("Env[KEY2] = %q, want 'val2'", job.Env["KEY2"]) + } + if !strings.Contains(job.Container, "container:") { + t.Errorf("Expected 'container:' in Container, got: %q", job.Container) + } + if !strings.Contains(job.Container, "image: ubuntu:22.04") { + t.Errorf("Expected 'image: ubuntu:22.04' in Container, got: %q", job.Container) + } + if !strings.Contains(job.Services, "services:") { + t.Errorf("Expected 'services:' in Services, got: %q", job.Services) + } + if !strings.Contains(job.Services, "postgres:") { + t.Errorf("Expected 'postgres:' in Services, got: %q", job.Services) + } + + // Verify the rendered YAML contains all fields + jm := NewJobManager() + if err := jm.AddJob(job); err != nil { + t.Fatalf("AddJob() error: %v", err) + } + rendered := jm.RenderToYAML() + + renderedChecks := []string{ + "name: My Display Name", + "timeout-minutes: 30", + "continue-on-error: true", + "concurrency: ci-group", + "KEY1: val1", + "KEY2: val2", + "container:", + "image: ubuntu:22.04", + "services:", + "postgres:", + } + for _, check := range renderedChecks { + if !strings.Contains(rendered, check) { + t.Errorf("Expected %q in rendered YAML, got:\n%s", check, rendered) + } + } +} diff --git a/pkg/workflow/jobs.go b/pkg/workflow/jobs.go index 1b33b173a1..20dcb0f71a 100644 --- a/pkg/workflow/jobs.go +++ b/pkg/workflow/jobs.go @@ -28,6 +28,7 @@ type Job struct { Container string // Job container configuration Services string // Job services configuration Env map[string]string // Job-level environment variables + ContinueOnError bool // continue-on-error flag for the job Steps []string Needs []string // Job dependencies (needs clause) Outputs map[string]string @@ -322,6 +323,11 @@ func (jm *JobManager) renderJob(job *Job) string { fmt.Fprintf(&yaml, " timeout-minutes: %d\n", job.TimeoutMinutes) } + // Add continue-on-error if true + if job.ContinueOnError { + yaml.WriteString(" continue-on-error: true\n") + } + // Add environment variables section if len(job.Env) > 0 { yaml.WriteString(" env:\n") From 90a28e7acc0049044a64a874a0ed3a656a726574 Mon Sep 17 00:00:00 2001 From: Peli de Halleux Date: Wed, 4 Mar 2026 01:00:15 -0800 Subject: [PATCH 3/4] Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- pkg/workflow/jobs.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkg/workflow/jobs.go b/pkg/workflow/jobs.go index 20dcb0f71a..019578d68d 100644 --- a/pkg/workflow/jobs.go +++ b/pkg/workflow/jobs.go @@ -323,10 +323,8 @@ func (jm *JobManager) renderJob(job *Job) string { fmt.Fprintf(&yaml, " timeout-minutes: %d\n", job.TimeoutMinutes) } - // Add continue-on-error if true - if job.ContinueOnError { - yaml.WriteString(" continue-on-error: true\n") - } + // Add continue-on-error, always reflecting the configured value + fmt.Fprintf(&yaml, " continue-on-error: %t\n", job.ContinueOnError) // Add environment variables section if len(job.Env) > 0 { From 51b11bac8fdb343106d3a7362db283ab68f194a2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Mar 2026 09:24:36 +0000 Subject: [PATCH 4/4] Fix ContinueOnError to use *bool to avoid rendering false for all jobs Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/agent-performance-analyzer.lock.yml | 6 ++++++ .github/workflows/agent-persona-explorer.lock.yml | 6 ++++++ .github/workflows/ai-moderator.lock.yml | 6 ++++++ .github/workflows/archie.lock.yml | 5 +++++ .github/workflows/artifacts-summary.lock.yml | 4 ++++ .github/workflows/audit-workflows.lock.yml | 7 +++++++ .github/workflows/auto-triage-issues.lock.yml | 5 +++++ .github/workflows/blog-auditor.lock.yml | 4 ++++ .github/workflows/bot-detection.lock.yml | 5 +++++ .github/workflows/brave.lock.yml | 5 +++++ .github/workflows/breaking-change-checker.lock.yml | 5 +++++ .github/workflows/changeset.lock.yml | 5 +++++ .github/workflows/chroma-issue-indexer.lock.yml | 2 ++ .github/workflows/ci-coach.lock.yml | 5 +++++ .github/workflows/ci-doctor.lock.yml | 6 ++++++ .github/workflows/claude-code-user-docs-review.lock.yml | 5 +++++ .github/workflows/cli-consistency-checker.lock.yml | 4 ++++ .github/workflows/cli-version-checker.lock.yml | 5 +++++ .github/workflows/cloclo.lock.yml | 6 ++++++ .github/workflows/code-scanning-fixer.lock.yml | 7 +++++++ .github/workflows/code-simplifier.lock.yml | 5 +++++ .github/workflows/codex-github-remote-mcp-test.lock.yml | 2 ++ .github/workflows/commit-changes-analyzer.lock.yml | 4 ++++ .github/workflows/contribution-check.lock.yml | 4 ++++ .github/workflows/copilot-agent-analysis.lock.yml | 6 ++++++ .github/workflows/copilot-cli-deep-research.lock.yml | 5 +++++ .github/workflows/copilot-pr-merged-report.lock.yml | 5 +++++ .github/workflows/copilot-pr-nlp-analysis.lock.yml | 7 +++++++ .github/workflows/copilot-pr-prompt-analysis.lock.yml | 6 ++++++ .github/workflows/copilot-session-insights.lock.yml | 7 +++++++ .github/workflows/craft.lock.yml | 5 +++++ .github/workflows/daily-architecture-diagram.lock.yml | 5 +++++ .github/workflows/daily-assign-issue-to-user.lock.yml | 4 ++++ .github/workflows/daily-choice-test.lock.yml | 5 +++++ .github/workflows/daily-cli-performance.lock.yml | 5 +++++ .github/workflows/daily-cli-tools-tester.lock.yml | 4 ++++ .github/workflows/daily-code-metrics.lock.yml | 7 +++++++ .github/workflows/daily-compiler-quality.lock.yml | 5 +++++ .github/workflows/daily-copilot-token-report.lock.yml | 7 +++++++ .github/workflows/daily-doc-healer.lock.yml | 5 +++++ .github/workflows/daily-doc-updater.lock.yml | 5 +++++ .github/workflows/daily-fact.lock.yml | 4 ++++ .github/workflows/daily-file-diet.lock.yml | 5 +++++ .github/workflows/daily-firewall-report.lock.yml | 6 ++++++ .github/workflows/daily-issues-report.lock.yml | 7 +++++++ .github/workflows/daily-malicious-code-scan.lock.yml | 4 ++++ .github/workflows/daily-mcp-concurrency-analysis.lock.yml | 5 +++++ .github/workflows/daily-multi-device-docs-tester.lock.yml | 5 +++++ .github/workflows/daily-news.lock.yml | 7 +++++++ .github/workflows/daily-observability-report.lock.yml | 5 +++++ .github/workflows/daily-performance-summary.lock.yml | 6 ++++++ .github/workflows/daily-regulatory.lock.yml | 4 ++++ .../workflows/daily-rendering-scripts-verifier.lock.yml | 6 ++++++ .github/workflows/daily-repo-chronicle.lock.yml | 6 ++++++ .github/workflows/daily-safe-output-optimizer.lock.yml | 6 ++++++ .github/workflows/daily-safe-outputs-conformance.lock.yml | 4 ++++ .github/workflows/daily-secrets-analysis.lock.yml | 4 ++++ .github/workflows/daily-security-red-team.lock.yml | 4 ++++ .github/workflows/daily-semgrep-scan.lock.yml | 4 ++++ .github/workflows/daily-syntax-error-quality.lock.yml | 4 ++++ .github/workflows/daily-team-evolution-insights.lock.yml | 4 ++++ .github/workflows/daily-team-status.lock.yml | 5 +++++ .../workflows/daily-testify-uber-super-expert.lock.yml | 6 ++++++ .github/workflows/daily-workflow-updater.lock.yml | 4 ++++ .github/workflows/dead-code-remover.lock.yml | 6 ++++++ .github/workflows/deep-report.lock.yml | 7 +++++++ .github/workflows/delight.lock.yml | 5 +++++ .github/workflows/dependabot-burner.lock.yml | 5 +++++ .github/workflows/dependabot-go-checker.lock.yml | 4 ++++ .github/workflows/dev-hawk.lock.yml | 5 +++++ .github/workflows/dev.lock.yml | 4 ++++ .github/workflows/developer-docs-consolidator.lock.yml | 5 +++++ .github/workflows/dictation-prompt.lock.yml | 4 ++++ .github/workflows/discussion-task-miner.lock.yml | 5 +++++ .github/workflows/docs-noob-tester.lock.yml | 5 +++++ .github/workflows/draft-pr-cleanup.lock.yml | 4 ++++ .github/workflows/duplicate-code-detector.lock.yml | 4 ++++ .github/workflows/example-custom-error-patterns.lock.yml | 3 +++ .github/workflows/example-permissions-warning.lock.yml | 2 ++ .github/workflows/example-workflow-analyzer.lock.yml | 4 ++++ .github/workflows/firewall-escape.lock.yml | 8 ++++++++ .github/workflows/firewall.lock.yml | 2 ++ .github/workflows/functional-pragmatist.lock.yml | 4 ++++ .github/workflows/github-mcp-structural-analysis.lock.yml | 6 ++++++ .github/workflows/github-mcp-tools-report.lock.yml | 5 +++++ .github/workflows/github-remote-mcp-auth-test.lock.yml | 4 ++++ .github/workflows/glossary-maintainer.lock.yml | 5 +++++ .github/workflows/go-fan.lock.yml | 5 +++++ .github/workflows/go-logger.lock.yml | 5 +++++ .github/workflows/go-pattern-detector.lock.yml | 5 +++++ .github/workflows/gpclean.lock.yml | 5 +++++ .github/workflows/grumpy-reviewer.lock.yml | 6 ++++++ .github/workflows/hourly-ci-cleaner.lock.yml | 5 +++++ .github/workflows/instructions-janitor.lock.yml | 5 +++++ .github/workflows/issue-arborist.lock.yml | 4 ++++ .github/workflows/issue-monster.lock.yml | 6 ++++++ .github/workflows/issue-triage-agent.lock.yml | 4 ++++ .github/workflows/jsweep.lock.yml | 5 +++++ .github/workflows/layout-spec-maintainer.lock.yml | 4 ++++ .github/workflows/lockfile-stats.lock.yml | 5 +++++ .github/workflows/mcp-inspector.lock.yml | 7 +++++++ .github/workflows/mergefest.lock.yml | 5 +++++ .github/workflows/metrics-collector.lock.yml | 4 ++++ .github/workflows/notion-issue-summary.lock.yml | 5 +++++ .github/workflows/org-health-report.lock.yml | 6 ++++++ .github/workflows/pdf-summary.lock.yml | 6 ++++++ .github/workflows/plan.lock.yml | 5 +++++ .github/workflows/poem-bot.lock.yml | 7 +++++++ .github/workflows/portfolio-analyst.lock.yml | 6 ++++++ .github/workflows/pr-nitpick-reviewer.lock.yml | 6 ++++++ .github/workflows/pr-triage-agent.lock.yml | 5 +++++ .github/workflows/prompt-clustering-analysis.lock.yml | 5 +++++ .github/workflows/python-data-charts.lock.yml | 6 ++++++ .github/workflows/q.lock.yml | 6 ++++++ .github/workflows/refiner.lock.yml | 5 +++++ .github/workflows/release.lock.yml | 7 +++++++ .github/workflows/repo-audit-analyzer.lock.yml | 5 +++++ .github/workflows/repo-tree-map.lock.yml | 4 ++++ .github/workflows/repository-quality-improver.lock.yml | 5 +++++ .github/workflows/research.lock.yml | 4 ++++ .github/workflows/safe-output-health.lock.yml | 5 +++++ .github/workflows/schema-consistency-checker.lock.yml | 5 +++++ .github/workflows/scout.lock.yml | 6 ++++++ .../workflows/security-alert-burndown.campaign.g.lock.yml | 5 +++++ .github/workflows/security-compliance.lock.yml | 5 +++++ .github/workflows/security-review.lock.yml | 6 ++++++ .github/workflows/semantic-function-refactor.lock.yml | 4 ++++ .github/workflows/sergo.lock.yml | 5 +++++ .github/workflows/slide-deck-maintainer.lock.yml | 6 ++++++ .github/workflows/smoke-agent.lock.yml | 5 +++++ .github/workflows/smoke-claude.lock.yml | 6 ++++++ .github/workflows/smoke-codex.lock.yml | 6 ++++++ .github/workflows/smoke-copilot-arm.lock.yml | 7 +++++++ .github/workflows/smoke-copilot.lock.yml | 7 +++++++ .github/workflows/smoke-create-cross-repo-pr.lock.yml | 5 +++++ .github/workflows/smoke-gemini.lock.yml | 6 ++++++ .github/workflows/smoke-multi-pr.lock.yml | 5 +++++ .github/workflows/smoke-project.lock.yml | 5 +++++ .github/workflows/smoke-temporary-id.lock.yml | 5 +++++ .github/workflows/smoke-test-tools.lock.yml | 5 +++++ .github/workflows/smoke-update-cross-repo-pr.lock.yml | 6 ++++++ .github/workflows/smoke-workflow-call.lock.yml | 5 +++++ .github/workflows/stale-repo-identifier.lock.yml | 6 ++++++ .github/workflows/static-analysis-report.lock.yml | 5 +++++ .github/workflows/step-name-alignment.lock.yml | 5 +++++ .github/workflows/sub-issue-closer.lock.yml | 4 ++++ .github/workflows/super-linter.lock.yml | 6 ++++++ .github/workflows/technical-doc-writer.lock.yml | 6 ++++++ .github/workflows/terminal-stylist.lock.yml | 4 ++++ .github/workflows/test-create-pr-error-handling.lock.yml | 5 +++++ .github/workflows/test-dispatcher.lock.yml | 4 ++++ .github/workflows/test-project-url-default.lock.yml | 4 ++++ .github/workflows/test-workflow.lock.yml | 2 ++ .github/workflows/tidy.lock.yml | 5 +++++ .github/workflows/typist.lock.yml | 4 ++++ .github/workflows/ubuntu-image-analyzer.lock.yml | 5 +++++ .github/workflows/unbloat-docs.lock.yml | 7 +++++++ .github/workflows/video-analyzer.lock.yml | 4 ++++ .github/workflows/weekly-editors-health-check.lock.yml | 5 +++++ .github/workflows/weekly-issue-summary.lock.yml | 6 ++++++ .../workflows/weekly-safe-outputs-spec-review.lock.yml | 4 ++++ .github/workflows/workflow-generator.lock.yml | 6 ++++++ .github/workflows/workflow-health-manager.lock.yml | 6 ++++++ .github/workflows/workflow-normalizer.lock.yml | 4 ++++ .github/workflows/workflow-skill-extractor.lock.yml | 4 ++++ pkg/workflow/compiler_jobs.go | 2 +- pkg/workflow/compiler_jobs_test.go | 2 +- pkg/workflow/jobs.go | 8 +++++--- 168 files changed, 843 insertions(+), 5 deletions(-) diff --git a/.github/workflows/agent-performance-analyzer.lock.yml b/.github/workflows/agent-performance-analyzer.lock.yml index 25740a4d86..7e4dff1b7b 100644 --- a/.github/workflows/agent-performance-analyzer.lock.yml +++ b/.github/workflows/agent-performance-analyzer.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -257,6 +258,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1127,6 +1129,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1228,6 +1231,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1264,6 +1268,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1335,6 +1340,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/agent-performance-analyzer" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/agent-persona-explorer.lock.yml b/.github/workflows/agent-persona-explorer.lock.yml index fd314396a5..886efe2aeb 100644 --- a/.github/workflows/agent-persona-explorer.lock.yml +++ b/.github/workflows/agent-persona-explorer.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -258,6 +259,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1010,6 +1012,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1110,6 +1113,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1146,6 +1150,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/agent-persona-explorer" GH_AW_ENGINE_ID: "copilot" @@ -1212,6 +1217,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: agentpersonaexplorer steps: diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml index 013bc55298..f01953d31f 100644 --- a/.github/workflows/ai-moderator.lock.yml +++ b/.github/workflows/ai-moderator.lock.yml @@ -64,6 +64,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -300,6 +301,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -914,6 +916,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1012,6 +1015,7 @@ jobs: permissions: actions: read contents: read + continue-on-error: false outputs: activated: ${{ ((steps.check_skip_roles.outputs.skip_roles_ok == 'true') && (steps.check_skip_bots.outputs.skip_bots_ok == 'true')) && (steps.check_rate_limit.outputs.rate_limit_ok == 'true') }} matched_command: '' @@ -1080,6 +1084,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/ai-moderator" GH_AW_ENGINE_ID: "codex" @@ -1150,6 +1155,7 @@ jobs: contents: read issues: write timeout-minutes: 5 + continue-on-error: false steps: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml index 04c0bad94f..2ea1aadeae 100644 --- a/.github/workflows/archie.lock.yml +++ b/.github/workflows/archie.lock.yml @@ -69,6 +69,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -307,6 +308,7 @@ jobs: copilot-requests: write issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -973,6 +975,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1077,6 +1080,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1125,6 +1129,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/archie" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml index 8e84a82f30..c33cfc6b25 100644 --- a/.github/workflows/artifacts-summary.lock.yml +++ b/.github/workflows/artifacts-summary.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -244,6 +245,7 @@ jobs: copilot-requests: write concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -913,6 +915,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1017,6 +1020,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/artifacts-summary" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml index 49aa9e4c6c..95e048db59 100644 --- a/.github/workflows/audit-workflows.lock.yml +++ b/.github/workflows/audit-workflows.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -275,6 +276,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1166,6 +1168,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1276,6 +1279,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1346,6 +1350,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/audit-workflows" GH_AW_ENGINE_ID: "claude" @@ -1413,6 +1418,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: auditworkflows steps: @@ -1456,6 +1462,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/auto-triage-issues.lock.yml b/.github/workflows/auto-triage-issues.lock.yml index 1ef9e9ad42..daeb5495ba 100644 --- a/.github/workflows/auto-triage-issues.lock.yml +++ b/.github/workflows/auto-triage-issues.lock.yml @@ -54,6 +54,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -257,6 +258,7 @@ jobs: contents: read copilot-requests: write issues: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -983,6 +985,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1083,6 +1086,7 @@ jobs: permissions: actions: read contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_rate_limit.outputs.rate_limit_ok == 'true') }} matched_command: '' @@ -1135,6 +1139,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/auto-triage-issues" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml index 9e3f51b77a..20d011df3d 100644 --- a/.github/workflows/blog-auditor.lock.yml +++ b/.github/workflows/blog-auditor.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -252,6 +253,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1026,6 +1028,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1134,6 +1137,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/blog-auditor" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/bot-detection.lock.yml b/.github/workflows/bot-detection.lock.yml index 85b4a747df..8a717a79b2 100644 --- a/.github/workflows/bot-detection.lock.yml +++ b/.github/workflows/bot-detection.lock.yml @@ -45,6 +45,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -260,6 +261,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -949,6 +951,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1051,6 +1054,7 @@ jobs: issues: read pull-requests: read + continue-on-error: false outputs: action: ${{ steps.precompute.outputs.action }} issue_body: ${{ steps.precompute.outputs.issue_body }} @@ -1849,6 +1853,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/bot-detection" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/brave.lock.yml b/.github/workflows/brave.lock.yml index 72dc580f47..7db1df4153 100644 --- a/.github/workflows/brave.lock.yml +++ b/.github/workflows/brave.lock.yml @@ -55,6 +55,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -291,6 +292,7 @@ jobs: copilot-requests: write issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -961,6 +963,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1062,6 +1065,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1110,6 +1114,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/brave" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml index 81f43b1a57..6557d6091b 100644 --- a/.github/workflows/breaking-change-checker.lock.yml +++ b/.github/workflows/breaking-change-checker.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -246,6 +247,7 @@ jobs: copilot-requests: write concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -956,6 +958,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1058,6 +1061,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1106,6 +1110,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/breaking-change-checker" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml index 31c07cbd1f..2dd3b6bad1 100644 --- a/.github/workflows/changeset.lock.yml +++ b/.github/workflows/changeset.lock.yml @@ -63,6 +63,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -305,6 +306,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1015,6 +1017,7 @@ jobs: permissions: contents: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1118,6 +1121,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1155,6 +1159,7 @@ jobs: contents: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/changeset" GH_AW_ENGINE_ID: "codex" diff --git a/.github/workflows/chroma-issue-indexer.lock.yml b/.github/workflows/chroma-issue-indexer.lock.yml index d39ed96242..d15ebe75dd 100644 --- a/.github/workflows/chroma-issue-indexer.lock.yml +++ b/.github/workflows/chroma-issue-indexer.lock.yml @@ -46,6 +46,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -244,6 +245,7 @@ jobs: issues: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: chromaissueindexer outputs: diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml index ce44f728b5..9b9c5d5c41 100644 --- a/.github/workflows/ci-coach.lock.yml +++ b/.github/workflows/ci-coach.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -267,6 +268,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1018,6 +1020,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1143,6 +1146,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/ci-coach" GH_AW_ENGINE_ID: "copilot" @@ -1241,6 +1245,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: cicoach steps: diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index c51cb3e7e9..89a5228376 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -58,6 +58,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -287,6 +288,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1159,6 +1161,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1267,6 +1270,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_stop_time.outputs.stop_time_ok == 'true') }} matched_command: '' @@ -1316,6 +1320,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/ci-doctor" GH_AW_ENGINE_ID: "copilot" @@ -1390,6 +1395,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: cidoctor steps: diff --git a/.github/workflows/claude-code-user-docs-review.lock.yml b/.github/workflows/claude-code-user-docs-review.lock.yml index 9aeffa5f08..a62f106d91 100644 --- a/.github/workflows/claude-code-user-docs-review.lock.yml +++ b/.github/workflows/claude-code-user-docs-review.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -250,6 +251,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -987,6 +989,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1095,6 +1098,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/claude-code-user-docs-review" GH_AW_ENGINE_ID: "claude" @@ -1162,6 +1166,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: claudecodeuserdocsreview steps: diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml index b357f4da61..10f446e00b 100644 --- a/.github/workflows/cli-consistency-checker.lock.yml +++ b/.github/workflows/cli-consistency-checker.lock.yml @@ -43,6 +43,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -235,6 +236,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -925,6 +927,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1026,6 +1029,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/cli-consistency-checker" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml index b85f8dc50e..41f81adca3 100644 --- a/.github/workflows/cli-version-checker.lock.yml +++ b/.github/workflows/cli-version-checker.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -258,6 +259,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1020,6 +1022,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1121,6 +1124,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/cli-version-checker" GH_AW_ENGINE_ID: "claude" @@ -1189,6 +1193,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: cliversionchecker steps: diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml index 4c63420c0d..2a8ac1b8e1 100644 --- a/.github/workflows/cloclo.lock.yml +++ b/.github/workflows/cloclo.lock.yml @@ -92,6 +92,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -364,6 +365,7 @@ jobs: discussions: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1315,6 +1317,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1445,6 +1448,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1495,6 +1499,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/cloclo" GH_AW_ENGINE_ID: "claude" @@ -1595,6 +1600,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: cloclo steps: diff --git a/.github/workflows/code-scanning-fixer.lock.yml b/.github/workflows/code-scanning-fixer.lock.yml index c4e84188f1..dc8d52bef0 100644 --- a/.github/workflows/code-scanning-fixer.lock.yml +++ b/.github/workflows/code-scanning-fixer.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -248,6 +249,7 @@ jobs: copilot-requests: write pull-requests: read security-events: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1021,6 +1023,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1136,6 +1139,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1185,6 +1189,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_campaigns: ${{ steps.push_repo_memory_campaigns.outputs.validation_error }} validation_failed_campaigns: ${{ steps.push_repo_memory_campaigns.outputs.validation_failed }} @@ -1257,6 +1262,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/code-scanning-fixer" GH_AW_ENGINE_ID: "copilot" @@ -1354,6 +1360,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: codescanningfixer steps: diff --git a/.github/workflows/code-simplifier.lock.yml b/.github/workflows/code-simplifier.lock.yml index 4847b3a674..4c6aacfdc6 100644 --- a/.github/workflows/code-simplifier.lock.yml +++ b/.github/workflows/code-simplifier.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -255,6 +256,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -949,6 +951,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1068,6 +1071,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1119,6 +1123,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/code-simplifier" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/codex-github-remote-mcp-test.lock.yml b/.github/workflows/codex-github-remote-mcp-test.lock.yml index fec4ce6852..585d3a4103 100644 --- a/.github/workflows/codex-github-remote-mcp-test.lock.yml +++ b/.github/workflows/codex-github-remote-mcp-test.lock.yml @@ -41,6 +41,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -229,6 +230,7 @@ jobs: permissions: contents: read issues: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: codexgithubremotemcptest outputs: diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml index 23b403306a..94b244d8dc 100644 --- a/.github/workflows/commit-changes-analyzer.lock.yml +++ b/.github/workflows/commit-changes-analyzer.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -251,6 +252,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -968,6 +970,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1072,6 +1075,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/commit-changes-analyzer" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/contribution-check.lock.yml b/.github/workflows/contribution-check.lock.yml index b32d3dac29..82cb0ceda3 100644 --- a/.github/workflows/contribution-check.lock.yml +++ b/.github/workflows/contribution-check.lock.yml @@ -46,6 +46,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -245,6 +246,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1003,6 +1005,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1107,6 +1110,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/contribution-check" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml index 329d423177..7350d5213f 100644 --- a/.github/workflows/copilot-agent-analysis.lock.yml +++ b/.github/workflows/copilot-agent-analysis.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -277,6 +278,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1042,6 +1044,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1148,6 +1151,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1218,6 +1222,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/copilot-agent-analysis" GH_AW_ENGINE_ID: "claude" @@ -1284,6 +1289,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: copilotagentanalysis steps: diff --git a/.github/workflows/copilot-cli-deep-research.lock.yml b/.github/workflows/copilot-cli-deep-research.lock.yml index 0170b56b8d..a3fe9a3254 100644 --- a/.github/workflows/copilot-cli-deep-research.lock.yml +++ b/.github/workflows/copilot-cli-deep-research.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -256,6 +257,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -967,6 +969,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1073,6 +1076,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1143,6 +1147,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/copilot-cli-deep-research" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml index 6330d74f91..b66d3950d0 100644 --- a/.github/workflows/copilot-pr-merged-report.lock.yml +++ b/.github/workflows/copilot-pr-merged-report.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -265,6 +266,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1083,6 +1085,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1187,6 +1190,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/copilot-pr-merged-report" GH_AW_ENGINE_ID: "copilot" @@ -1253,6 +1257,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: copilotprmergedreport steps: diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml index 5c61ac8def..eaa1cf4704 100644 --- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml +++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -278,6 +279,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1063,6 +1065,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1169,6 +1172,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1239,6 +1243,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/copilot-pr-nlp-analysis" GH_AW_ENGINE_ID: "copilot" @@ -1305,6 +1310,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: copilotprnlpanalysis steps: @@ -1348,6 +1354,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml index 90dce25e3e..6bbcd730bc 100644 --- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml +++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -273,6 +274,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -987,6 +989,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1093,6 +1096,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1163,6 +1167,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/copilot-pr-prompt-analysis" GH_AW_ENGINE_ID: "copilot" @@ -1229,6 +1234,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: copilotprpromptanalysis steps: diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml index da10378cf6..1727a29106 100644 --- a/.github/workflows/copilot-session-insights.lock.yml +++ b/.github/workflows/copilot-session-insights.lock.yml @@ -53,6 +53,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -292,6 +293,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1121,6 +1123,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1227,6 +1230,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1297,6 +1301,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/copilot-session-insights" GH_AW_ENGINE_ID: "claude" @@ -1363,6 +1368,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: copilotsessioninsights steps: @@ -1406,6 +1412,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml index 5ae6638fc1..4c47f428fa 100644 --- a/.github/workflows/craft.lock.yml +++ b/.github/workflows/craft.lock.yml @@ -52,6 +52,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -284,6 +285,7 @@ jobs: copilot-requests: write issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -996,6 +998,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1098,6 +1101,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1148,6 +1152,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/craft" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-architecture-diagram.lock.yml b/.github/workflows/daily-architecture-diagram.lock.yml index db181d2cfd..24c3e7f864 100644 --- a/.github/workflows/daily-architecture-diagram.lock.yml +++ b/.github/workflows/daily-architecture-diagram.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -250,6 +251,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1036,6 +1038,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1156,6 +1159,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-architecture-diagram" GH_AW_ENGINE_ID: "copilot" @@ -1255,6 +1259,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailyarchitecturediagram steps: diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml index 2696547ed8..bec8c13f8f 100644 --- a/.github/workflows/daily-assign-issue-to-user.lock.yml +++ b/.github/workflows/daily-assign-issue-to-user.lock.yml @@ -43,6 +43,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -232,6 +233,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -942,6 +944,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1045,6 +1048,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-assign-issue-to-user" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-choice-test.lock.yml b/.github/workflows/daily-choice-test.lock.yml index 6acb4eec32..291a6ab9a1 100644 --- a/.github/workflows/daily-choice-test.lock.yml +++ b/.github/workflows/daily-choice-test.lock.yml @@ -43,6 +43,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -237,6 +238,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -930,6 +932,7 @@ jobs: - test_environment if: (always()) && (needs.agent.result != 'skipped') runs-on: ubuntu-slim + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1032,6 +1035,7 @@ jobs: if: ((!cancelled()) && (needs.agent.result != 'skipped')) && (needs.agent.outputs.detection_success == 'true') runs-on: ubuntu-slim timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-choice-test" GH_AW_ENGINE_ID: "claude" @@ -1093,6 +1097,7 @@ jobs: if: > ((!cancelled()) && (needs.agent.result != 'skipped')) && (contains(needs.agent.outputs.output_types, 'test_environment')) runs-on: ubuntu-latest + continue-on-error: false steps: - name: Download agent output artifact continue-on-error: true diff --git a/.github/workflows/daily-cli-performance.lock.yml b/.github/workflows/daily-cli-performance.lock.yml index 4d52303ce4..c91f93f957 100644 --- a/.github/workflows/daily-cli-performance.lock.yml +++ b/.github/workflows/daily-cli-performance.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -261,6 +262,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1156,6 +1158,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1264,6 +1267,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1335,6 +1339,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-cli-performance" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-cli-tools-tester.lock.yml b/.github/workflows/daily-cli-tools-tester.lock.yml index 6e9f5368c9..b34add1ba1 100644 --- a/.github/workflows/daily-cli-tools-tester.lock.yml +++ b/.github/workflows/daily-cli-tools-tester.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -241,6 +242,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -997,6 +999,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1099,6 +1102,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-cli-tools-tester" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml index 96d92e45b7..243903b4ca 100644 --- a/.github/workflows/daily-code-metrics.lock.yml +++ b/.github/workflows/daily-code-metrics.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -273,6 +274,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1095,6 +1097,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1205,6 +1208,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1275,6 +1279,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-code-metrics" GH_AW_ENGINE_ID: "claude" @@ -1342,6 +1347,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailycodemetrics steps: @@ -1385,6 +1391,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/daily-compiler-quality.lock.yml b/.github/workflows/daily-compiler-quality.lock.yml index 33487aac9c..a0f52e051d 100644 --- a/.github/workflows/daily-compiler-quality.lock.yml +++ b/.github/workflows/daily-compiler-quality.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -253,6 +254,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -968,6 +970,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1076,6 +1079,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-compiler-quality" GH_AW_ENGINE_ID: "copilot" @@ -1143,6 +1147,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailycompilerquality steps: diff --git a/.github/workflows/daily-copilot-token-report.lock.yml b/.github/workflows/daily-copilot-token-report.lock.yml index d7d598eae2..0cc46109ef 100644 --- a/.github/workflows/daily-copilot-token-report.lock.yml +++ b/.github/workflows/daily-copilot-token-report.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -266,6 +267,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1070,6 +1072,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1180,6 +1183,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1250,6 +1254,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-copilot-token-report" GH_AW_ENGINE_ID: "copilot" @@ -1317,6 +1322,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailycopilottokenreport steps: @@ -1360,6 +1366,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/daily-doc-healer.lock.yml b/.github/workflows/daily-doc-healer.lock.yml index 3ab532d8a6..9906d8af74 100644 --- a/.github/workflows/daily-doc-healer.lock.yml +++ b/.github/workflows/daily-doc-healer.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -249,6 +250,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1111,6 +1113,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1236,6 +1239,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-doc-healer" GH_AW_ENGINE_ID: "claude" @@ -1349,6 +1353,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailydochealer steps: diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml index cedde5218c..efd1bbade2 100644 --- a/.github/workflows/daily-doc-updater.lock.yml +++ b/.github/workflows/daily-doc-updater.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -249,6 +250,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1038,6 +1040,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1163,6 +1166,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-doc-updater" GH_AW_ENGINE_ID: "claude" @@ -1261,6 +1265,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailydocupdater steps: diff --git a/.github/workflows/daily-fact.lock.yml b/.github/workflows/daily-fact.lock.yml index 1bcea8c532..300f770860 100644 --- a/.github/workflows/daily-fact.lock.yml +++ b/.github/workflows/daily-fact.lock.yml @@ -43,6 +43,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -226,6 +227,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-codex-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -863,6 +865,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -965,6 +968,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-fact" GH_AW_ENGINE_ID: "codex" diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml index caeac14c32..7cafbe2704 100644 --- a/.github/workflows/daily-file-diet.lock.yml +++ b/.github/workflows/daily-file-diet.lock.yml @@ -52,6 +52,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -254,6 +255,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -974,6 +976,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1075,6 +1078,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1123,6 +1127,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-file-diet" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml index 3eb0b48b90..bb9081a751 100644 --- a/.github/workflows/daily-firewall-report.lock.yml +++ b/.github/workflows/daily-firewall-report.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -261,6 +262,7 @@ jobs: security-events: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1078,6 +1080,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1187,6 +1190,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-firewall-report" GH_AW_ENGINE_ID: "copilot" @@ -1254,6 +1258,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailyfirewallreport steps: @@ -1297,6 +1302,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml index 7ebbf021d1..26d1a37865 100644 --- a/.github/workflows/daily-issues-report.lock.yml +++ b/.github/workflows/daily-issues-report.lock.yml @@ -54,6 +54,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -282,6 +283,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-codex-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1076,6 +1078,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1179,6 +1182,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1215,6 +1219,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-issues-report" GH_AW_ENGINE_ID: "codex" @@ -1282,6 +1287,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailyissuesreport steps: @@ -1325,6 +1331,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml index 4082e4aa1e..8253e433d5 100644 --- a/.github/workflows/daily-malicious-code-scan.lock.yml +++ b/.github/workflows/daily-malicious-code-scan.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -241,6 +242,7 @@ jobs: security-events: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -831,6 +833,7 @@ jobs: permissions: contents: read security-events: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -936,6 +939,7 @@ jobs: contents: read security-events: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-malicious-code-scan" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml index 43beee6c9b..a0bf7c8c68 100644 --- a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml +++ b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -252,6 +253,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1021,6 +1023,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1126,6 +1129,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-mcp-concurrency-analysis" GH_AW_ENGINE_ID: "copilot" @@ -1209,6 +1213,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailymcpconcurrencyanalysis steps: diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml index 3d314cf2fa..49c108aa0b 100644 --- a/.github/workflows/daily-multi-device-docs-tester.lock.yml +++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml @@ -54,6 +54,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -265,6 +266,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1105,6 +1107,7 @@ jobs: permissions: contents: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1210,6 +1213,7 @@ jobs: contents: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-multi-device-docs-tester" GH_AW_ENGINE_ID: "claude" @@ -1280,6 +1284,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml index e7a175b060..521fbdd1db 100644 --- a/.github/workflows/daily-news.lock.yml +++ b/.github/workflows/daily-news.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -277,6 +278,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1132,6 +1134,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1242,6 +1245,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1312,6 +1316,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-news" GH_AW_ENGINE_ID: "copilot" @@ -1379,6 +1384,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailynews steps: @@ -1422,6 +1428,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/daily-observability-report.lock.yml b/.github/workflows/daily-observability-report.lock.yml index 86e60b48ba..5f74abd7fa 100644 --- a/.github/workflows/daily-observability-report.lock.yml +++ b/.github/workflows/daily-observability-report.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -254,6 +255,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-codex-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1041,6 +1043,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1144,6 +1147,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1180,6 +1184,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-observability-report" GH_AW_ENGINE_ID: "codex" diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml index 1cde4c1ed9..b6efe7b62f 100644 --- a/.github/workflows/daily-performance-summary.lock.yml +++ b/.github/workflows/daily-performance-summary.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -266,6 +267,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1554,6 +1556,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1663,6 +1666,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-performance-summary" GH_AW_ENGINE_ID: "copilot" @@ -1730,6 +1734,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailyperformancesummary steps: @@ -1773,6 +1778,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/daily-regulatory.lock.yml b/.github/workflows/daily-regulatory.lock.yml index 7541043637..6c9e4bf24d 100644 --- a/.github/workflows/daily-regulatory.lock.yml +++ b/.github/workflows/daily-regulatory.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -253,6 +254,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1459,6 +1461,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1568,6 +1571,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-regulatory" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-rendering-scripts-verifier.lock.yml b/.github/workflows/daily-rendering-scripts-verifier.lock.yml index aa9c39c200..0cfda31ce9 100644 --- a/.github/workflows/daily-rendering-scripts-verifier.lock.yml +++ b/.github/workflows/daily-rendering-scripts-verifier.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -263,6 +264,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1122,6 +1124,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1240,6 +1243,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1291,6 +1295,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-rendering-scripts-verifier" GH_AW_ENGINE_ID: "claude" @@ -1389,6 +1394,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailyrenderingscriptsverifier steps: diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml index 362f576aaa..bf32de320f 100644 --- a/.github/workflows/daily-repo-chronicle.lock.yml +++ b/.github/workflows/daily-repo-chronicle.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -258,6 +259,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1009,6 +1011,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1117,6 +1120,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-repo-chronicle" GH_AW_ENGINE_ID: "copilot" @@ -1184,6 +1188,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailyrepochronicle steps: @@ -1227,6 +1232,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/daily-safe-output-optimizer.lock.yml b/.github/workflows/daily-safe-output-optimizer.lock.yml index 0e9fdeee8f..1862de7feb 100644 --- a/.github/workflows/daily-safe-output-optimizer.lock.yml +++ b/.github/workflows/daily-safe-output-optimizer.lock.yml @@ -52,6 +52,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -263,6 +264,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1109,6 +1111,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1206,6 +1209,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1254,6 +1258,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-safe-output-optimizer" GH_AW_ENGINE_ID: "claude" @@ -1322,6 +1327,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: dailysafeoutputoptimizer steps: diff --git a/.github/workflows/daily-safe-outputs-conformance.lock.yml b/.github/workflows/daily-safe-outputs-conformance.lock.yml index e3d32fbd65..f2e4760339 100644 --- a/.github/workflows/daily-safe-outputs-conformance.lock.yml +++ b/.github/workflows/daily-safe-outputs-conformance.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -246,6 +247,7 @@ jobs: issues: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -983,6 +985,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1088,6 +1091,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-safe-outputs-conformance" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/daily-secrets-analysis.lock.yml b/.github/workflows/daily-secrets-analysis.lock.yml index f64182bded..bb604dd06f 100644 --- a/.github/workflows/daily-secrets-analysis.lock.yml +++ b/.github/workflows/daily-secrets-analysis.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -243,6 +244,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -973,6 +975,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1081,6 +1084,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-secrets-analysis" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-security-red-team.lock.yml b/.github/workflows/daily-security-red-team.lock.yml index 7fdb7cd78e..140c003530 100644 --- a/.github/workflows/daily-security-red-team.lock.yml +++ b/.github/workflows/daily-security-red-team.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -250,6 +251,7 @@ jobs: issues: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -987,6 +989,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1092,6 +1095,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-security-red-team" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/daily-semgrep-scan.lock.yml b/.github/workflows/daily-semgrep-scan.lock.yml index 4add57b405..0698f683d0 100644 --- a/.github/workflows/daily-semgrep-scan.lock.yml +++ b/.github/workflows/daily-semgrep-scan.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -246,6 +247,7 @@ jobs: security-events: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -967,6 +969,7 @@ jobs: permissions: contents: read security-events: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1069,6 +1072,7 @@ jobs: contents: read security-events: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-semgrep-scan" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-syntax-error-quality.lock.yml b/.github/workflows/daily-syntax-error-quality.lock.yml index b2c48a7ddf..f71350c061 100644 --- a/.github/workflows/daily-syntax-error-quality.lock.yml +++ b/.github/workflows/daily-syntax-error-quality.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -242,6 +243,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -954,6 +956,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1059,6 +1062,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-syntax-error-quality" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-team-evolution-insights.lock.yml b/.github/workflows/daily-team-evolution-insights.lock.yml index c44eb4dbdf..74dca90559 100644 --- a/.github/workflows/daily-team-evolution-insights.lock.yml +++ b/.github/workflows/daily-team-evolution-insights.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -249,6 +250,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -965,6 +967,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1073,6 +1076,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-team-evolution-insights" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml index b77b80642e..b0685dd652 100644 --- a/.github/workflows/daily-team-status.lock.yml +++ b/.github/workflows/daily-team-status.lock.yml @@ -57,6 +57,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -256,6 +257,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -945,6 +947,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1055,6 +1058,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_stop_time.outputs.stop_time_ok == 'true' }} matched_command: '' @@ -1090,6 +1094,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-team-status" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-testify-uber-super-expert.lock.yml b/.github/workflows/daily-testify-uber-super-expert.lock.yml index 61b83cce62..092baf362a 100644 --- a/.github/workflows/daily-testify-uber-super-expert.lock.yml +++ b/.github/workflows/daily-testify-uber-super-expert.lock.yml @@ -53,6 +53,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -266,6 +267,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1005,6 +1007,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1108,6 +1111,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1157,6 +1161,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1226,6 +1231,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-testify-uber-super-expert" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml index b514e1955a..3f89a54992 100644 --- a/.github/workflows/daily-workflow-updater.lock.yml +++ b/.github/workflows/daily-workflow-updater.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -236,6 +237,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -931,6 +933,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1056,6 +1059,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/daily-workflow-updater" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/dead-code-remover.lock.yml b/.github/workflows/dead-code-remover.lock.yml index 9872d70175..4dd6db95d2 100644 --- a/.github/workflows/dead-code-remover.lock.yml +++ b/.github/workflows/dead-code-remover.lock.yml @@ -47,6 +47,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -254,6 +255,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -976,6 +978,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1089,6 +1092,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1140,6 +1144,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/dead-code-remover" GH_AW_ENGINE_ID: "copilot" @@ -1237,6 +1242,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: deadcoderemover steps: diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml index 392e64acfe..1a8fadbbf6 100644 --- a/.github/workflows/deep-report.lock.yml +++ b/.github/workflows/deep-report.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -276,6 +277,7 @@ jobs: security-events: read concurrency: group: "gh-aw-codex-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1163,6 +1165,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1273,6 +1276,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1343,6 +1347,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/deep-report" GH_AW_ENGINE_ID: "codex" @@ -1412,6 +1417,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: deepreport steps: @@ -1455,6 +1461,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/delight.lock.yml b/.github/workflows/delight.lock.yml index dd11f4acee..cceae5bf65 100644 --- a/.github/workflows/delight.lock.yml +++ b/.github/workflows/delight.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -258,6 +259,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1047,6 +1049,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1158,6 +1161,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1228,6 +1232,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/delight" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/dependabot-burner.lock.yml b/.github/workflows/dependabot-burner.lock.yml index 92099de097..88cf09b975 100644 --- a/.github/workflows/dependabot-burner.lock.yml +++ b/.github/workflows/dependabot-burner.lock.yml @@ -45,6 +45,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -241,6 +242,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -930,6 +932,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1028,6 +1031,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1063,6 +1067,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/dependabot-burner" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml index 621421757f..e0e9dec28f 100644 --- a/.github/workflows/dependabot-go-checker.lock.yml +++ b/.github/workflows/dependabot-go-checker.lock.yml @@ -43,6 +43,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -240,6 +241,7 @@ jobs: security-events: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -971,6 +973,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1073,6 +1076,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/dependabot-go-checker" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml index 17bb38e0f3..113682c06b 100644 --- a/.github/workflows/dev-hawk.lock.yml +++ b/.github/workflows/dev-hawk.lock.yml @@ -54,6 +54,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -270,6 +271,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1010,6 +1012,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1109,6 +1112,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1146,6 +1150,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/dev-hawk" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml index 3b59e78c57..3c1449ea1b 100644 --- a/.github/workflows/dev.lock.yml +++ b/.github/workflows/dev.lock.yml @@ -43,6 +43,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -232,6 +233,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -922,6 +924,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1023,6 +1026,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/dev" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml index defb24cbc3..0d3e682f70 100644 --- a/.github/workflows/developer-docs-consolidator.lock.yml +++ b/.github/workflows/developer-docs-consolidator.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -262,6 +263,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1119,6 +1121,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1242,6 +1245,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/developer-docs-consolidator" GH_AW_ENGINE_ID: "claude" @@ -1339,6 +1343,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: developerdocsconsolidator steps: diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml index d005ca6526..48b89efc19 100644 --- a/.github/workflows/dictation-prompt.lock.yml +++ b/.github/workflows/dictation-prompt.lock.yml @@ -47,6 +47,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -242,6 +243,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -937,6 +939,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1057,6 +1060,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/dictation-prompt" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/discussion-task-miner.lock.yml b/.github/workflows/discussion-task-miner.lock.yml index 3da3ba5156..bc9e7d6c5c 100644 --- a/.github/workflows/discussion-task-miner.lock.yml +++ b/.github/workflows/discussion-task-miner.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -259,6 +260,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1023,6 +1025,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1132,6 +1135,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1203,6 +1207,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/discussion-task-miner" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml index 5e48bec404..f90751fa37 100644 --- a/.github/workflows/docs-noob-tester.lock.yml +++ b/.github/workflows/docs-noob-tester.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -245,6 +246,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -964,6 +966,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1068,6 +1071,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/docs-noob-tester" GH_AW_ENGINE_ID: "copilot" @@ -1135,6 +1139,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/draft-pr-cleanup.lock.yml b/.github/workflows/draft-pr-cleanup.lock.yml index a59fbbe3bb..a6c0124b0b 100644 --- a/.github/workflows/draft-pr-cleanup.lock.yml +++ b/.github/workflows/draft-pr-cleanup.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -234,6 +235,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -971,6 +973,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1075,6 +1078,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/draft-pr-cleanup" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml index 0717251836..da6c9ad57f 100644 --- a/.github/workflows/duplicate-code-detector.lock.yml +++ b/.github/workflows/duplicate-code-detector.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -253,6 +254,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-codex-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -961,6 +963,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1062,6 +1065,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/duplicate-code-detector" GH_AW_ENGINE_ID: "codex" diff --git a/.github/workflows/example-custom-error-patterns.lock.yml b/.github/workflows/example-custom-error-patterns.lock.yml index b57d764289..233bf2edfd 100644 --- a/.github/workflows/example-custom-error-patterns.lock.yml +++ b/.github/workflows/example-custom-error-patterns.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -245,6 +246,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: examplecustomerrorpatterns outputs: @@ -506,6 +508,7 @@ jobs: permissions: actions: read contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_rate_limit.outputs.rate_limit_ok == 'true') }} matched_command: '' diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml index 669c10da0e..ff5a9d477e 100644 --- a/.github/workflows/example-permissions-warning.lock.yml +++ b/.github/workflows/example-permissions-warning.lock.yml @@ -41,6 +41,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -228,6 +229,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: examplepermissionswarning outputs: diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml index 62af4a27d4..df54ed91a2 100644 --- a/.github/workflows/example-workflow-analyzer.lock.yml +++ b/.github/workflows/example-workflow-analyzer.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -246,6 +247,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1028,6 +1030,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1132,6 +1135,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/example-workflow-analyzer" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml index 23193afd56..0579be10e2 100644 --- a/.github/workflows/firewall-escape.lock.yml +++ b/.github/workflows/firewall-escape.lock.yml @@ -54,6 +54,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -276,6 +277,7 @@ jobs: discussions: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -982,6 +984,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1090,6 +1093,7 @@ jobs: permissions: issues: write + continue-on-error: false steps: - name: Create issue on test failure uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 @@ -1119,6 +1123,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1155,6 +1160,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1224,6 +1230,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/firewall-escape" GH_AW_ENGINE_ID: "copilot" @@ -1291,6 +1298,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: firewallescape steps: diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml index 5b5271321d..33aeec4686 100644 --- a/.github/workflows/firewall.lock.yml +++ b/.github/workflows/firewall.lock.yml @@ -41,6 +41,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -230,6 +231,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: firewall outputs: diff --git a/.github/workflows/functional-pragmatist.lock.yml b/.github/workflows/functional-pragmatist.lock.yml index 8df0c1f757..b862749f33 100644 --- a/.github/workflows/functional-pragmatist.lock.yml +++ b/.github/workflows/functional-pragmatist.lock.yml @@ -47,6 +47,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -249,6 +250,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -943,6 +945,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1069,6 +1072,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/functional-pragmatist" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml index 2cb9af9d32..30cd8c2c78 100644 --- a/.github/workflows/github-mcp-structural-analysis.lock.yml +++ b/.github/workflows/github-mcp-structural-analysis.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -262,6 +263,7 @@ jobs: security-events: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1064,6 +1066,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1168,6 +1171,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/github-mcp-structural-analysis" GH_AW_ENGINE_ID: "claude" @@ -1234,6 +1238,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: githubmcpstructuralanalysis steps: @@ -1277,6 +1282,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml index 2acc3931d8..beb5b06b49 100644 --- a/.github/workflows/github-mcp-tools-report.lock.yml +++ b/.github/workflows/github-mcp-tools-report.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -259,6 +260,7 @@ jobs: security-events: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1076,6 +1078,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1199,6 +1202,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/github-mcp-tools-report" GH_AW_ENGINE_ID: "claude" @@ -1296,6 +1300,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: githubmcptoolsreport steps: diff --git a/.github/workflows/github-remote-mcp-auth-test.lock.yml b/.github/workflows/github-remote-mcp-auth-test.lock.yml index 46582900c9..653c8d85ec 100644 --- a/.github/workflows/github-remote-mcp-auth-test.lock.yml +++ b/.github/workflows/github-remote-mcp-auth-test.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -244,6 +245,7 @@ jobs: issues: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -921,6 +923,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1026,6 +1029,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/github-remote-mcp-auth-test" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml index 0e98513186..2711850f8a 100644 --- a/.github/workflows/glossary-maintainer.lock.yml +++ b/.github/workflows/glossary-maintainer.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -264,6 +265,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1022,6 +1024,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1143,6 +1146,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/glossary-maintainer" GH_AW_ENGINE_ID: "copilot" @@ -1240,6 +1244,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: glossarymaintainer steps: diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml index 296f5d6c85..3602fc3842 100644 --- a/.github/workflows/go-fan.lock.yml +++ b/.github/workflows/go-fan.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -259,6 +260,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1030,6 +1032,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1138,6 +1141,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/go-fan" GH_AW_ENGINE_ID: "claude" @@ -1205,6 +1209,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: gofan steps: diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml index c9f691c09d..f67a5d91dd 100644 --- a/.github/workflows/go-logger.lock.yml +++ b/.github/workflows/go-logger.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -255,6 +256,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1206,6 +1208,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1326,6 +1329,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/go-logger" GH_AW_ENGINE_ID: "claude" @@ -1423,6 +1427,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: gologger steps: diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml index b13bc814e2..9ec8c05de0 100644 --- a/.github/workflows/go-pattern-detector.lock.yml +++ b/.github/workflows/go-pattern-detector.lock.yml @@ -47,6 +47,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -253,6 +254,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -988,6 +990,7 @@ jobs: ast_grep: needs: activation runs-on: ubuntu-latest + continue-on-error: false outputs: found_patterns: ${{ steps.detect.outputs.found_patterns }} steps: @@ -1029,6 +1032,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1130,6 +1134,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/go-pattern-detector" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/gpclean.lock.yml b/.github/workflows/gpclean.lock.yml index 18494f7555..f4f0e5f339 100644 --- a/.github/workflows/gpclean.lock.yml +++ b/.github/workflows/gpclean.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -246,6 +247,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -958,6 +960,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1060,6 +1063,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/gpclean" GH_AW_ENGINE_ID: "copilot" @@ -1128,6 +1132,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: gpclean steps: diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml index 91a5a1817f..acbc13000a 100644 --- a/.github/workflows/grumpy-reviewer.lock.yml +++ b/.github/workflows/grumpy-reviewer.lock.yml @@ -56,6 +56,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -299,6 +300,7 @@ jobs: permissions: contents: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1041,6 +1043,7 @@ jobs: permissions: contents: read pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1144,6 +1147,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1190,6 +1194,7 @@ jobs: contents: read pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/grumpy-reviewer" GH_AW_ENGINE_ID: "copilot" @@ -1257,6 +1262,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: grumpyreviewer steps: diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml index 16ab281f28..46f6b7a4f3 100644 --- a/.github/workflows/hourly-ci-cleaner.lock.yml +++ b/.github/workflows/hourly-ci-cleaner.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -266,6 +267,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -988,6 +990,7 @@ jobs: actions: read contents: read + continue-on-error: false outputs: ci_needs_fix: ${{ steps.ci_check.outputs.ci_needs_fix }} ci_run_id: ${{ steps.ci_check.outputs.ci_run_id }} @@ -1040,6 +1043,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1168,6 +1172,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/hourly-ci-cleaner" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml index 84e348a7ac..579d5ca455 100644 --- a/.github/workflows/instructions-janitor.lock.yml +++ b/.github/workflows/instructions-janitor.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -248,6 +249,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1034,6 +1036,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1154,6 +1157,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/instructions-janitor" GH_AW_ENGINE_ID: "claude" @@ -1251,6 +1255,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: instructionsjanitor steps: diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml index bebec83715..6a6194c150 100644 --- a/.github/workflows/issue-arborist.lock.yml +++ b/.github/workflows/issue-arborist.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -249,6 +250,7 @@ jobs: issues: read concurrency: group: "gh-aw-codex-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1021,6 +1023,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1125,6 +1128,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/issue-arborist" GH_AW_ENGINE_ID: "codex" diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml index 78ff2215c9..ef31fc2ef0 100644 --- a/.github/workflows/issue-monster.lock.yml +++ b/.github/workflows/issue-monster.lock.yml @@ -52,6 +52,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -266,6 +267,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -968,6 +970,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1069,6 +1072,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ ((steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true')) && (steps.check_skip_if_no_match.outputs.skip_no_match_check_ok == 'true') }} matched_command: '' @@ -1132,6 +1136,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/issue-monster" GH_AW_ENGINE_ID: "copilot" @@ -1222,6 +1227,7 @@ jobs: permissions: issues: read + continue-on-error: false outputs: has_issues: ${{ steps.search.outputs.has_issues }} issue_count: ${{ steps.search.outputs.issue_count }} diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index a0ce831d47..6ccc0d68a6 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -46,6 +46,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -246,6 +247,7 @@ jobs: issues: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -916,6 +918,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1019,6 +1022,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/issue-triage-agent" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/jsweep.lock.yml b/.github/workflows/jsweep.lock.yml index 6db87d2e68..1885c4631a 100644 --- a/.github/workflows/jsweep.lock.yml +++ b/.github/workflows/jsweep.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -251,6 +252,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -979,6 +981,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1105,6 +1108,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/jsweep" GH_AW_ENGINE_ID: "copilot" @@ -1203,6 +1207,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: jsweep steps: diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index 57943fc334..1001870741 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -45,6 +45,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -242,6 +243,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -972,6 +974,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1098,6 +1101,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/layout-spec-maintainer" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml index 30f073bbd7..392ad2fb81 100644 --- a/.github/workflows/lockfile-stats.lock.yml +++ b/.github/workflows/lockfile-stats.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -253,6 +254,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -990,6 +992,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1094,6 +1097,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/lockfile-stats" GH_AW_ENGINE_ID: "claude" @@ -1160,6 +1164,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: lockfilestats steps: diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml index 988ec8e5e2..4532d3bdd7 100644 --- a/.github/workflows/mcp-inspector.lock.yml +++ b/.github/workflows/mcp-inspector.lock.yml @@ -63,6 +63,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -313,6 +314,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1328,6 +1330,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1431,6 +1434,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false steps: - name: Download agent output artifact continue-on-error: true @@ -1559,6 +1563,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false steps: - name: Download agent output artifact continue-on-error: true @@ -1703,6 +1708,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/mcp-inspector" GH_AW_ENGINE_ID: "copilot" @@ -1769,6 +1775,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: mcpinspector steps: diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml index faa62169e3..e89be34349 100644 --- a/.github/workflows/mergefest.lock.yml +++ b/.github/workflows/mergefest.lock.yml @@ -51,6 +51,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -285,6 +286,7 @@ jobs: actions: read contents: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -992,6 +994,7 @@ jobs: permissions: contents: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1095,6 +1098,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1143,6 +1147,7 @@ jobs: contents: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/mergefest" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/metrics-collector.lock.yml b/.github/workflows/metrics-collector.lock.yml index 0e410cf653..7f6fb8f2fc 100644 --- a/.github/workflows/metrics-collector.lock.yml +++ b/.github/workflows/metrics-collector.lock.yml @@ -46,6 +46,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -251,6 +252,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: metricscollector outputs: @@ -597,6 +599,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -633,6 +636,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml index 4776a7c673..57da2f3c6f 100644 --- a/.github/workflows/notion-issue-summary.lock.yml +++ b/.github/workflows/notion-issue-summary.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -249,6 +250,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -776,6 +778,7 @@ jobs: - safe_outputs if: (always()) && (needs.agent.result != 'skipped') runs-on: ubuntu-slim + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -877,6 +880,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false steps: - name: Download agent output artifact continue-on-error: true @@ -1003,6 +1007,7 @@ jobs: if: (!cancelled()) && (needs.agent.result != 'skipped') runs-on: ubuntu-slim timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/notion-issue-summary" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml index db4e068b0a..865d870874 100644 --- a/.github/workflows/org-health-report.lock.yml +++ b/.github/workflows/org-health-report.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -267,6 +268,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1008,6 +1010,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1113,6 +1116,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/org-health-report" GH_AW_ENGINE_ID: "copilot" @@ -1179,6 +1183,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: orghealthreport steps: @@ -1222,6 +1227,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml index 4158707bfa..dd7ff773ab 100644 --- a/.github/workflows/pdf-summary.lock.yml +++ b/.github/workflows/pdf-summary.lock.yml @@ -74,6 +74,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -331,6 +332,7 @@ jobs: discussions: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1064,6 +1066,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1171,6 +1174,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1219,6 +1223,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/pdf-summary" GH_AW_ENGINE_ID: "copilot" @@ -1288,6 +1293,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: pdfsummary steps: diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml index c22b1cb629..c1e273d1f4 100644 --- a/.github/workflows/plan.lock.yml +++ b/.github/workflows/plan.lock.yml @@ -56,6 +56,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -292,6 +293,7 @@ jobs: discussions: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1032,6 +1034,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1134,6 +1137,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1181,6 +1185,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/plan" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml index 697fb4ca4a..a5e6b97965 100644 --- a/.github/workflows/poem-bot.lock.yml +++ b/.github/workflows/poem-bot.lock.yml @@ -66,6 +66,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -320,6 +321,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1653,6 +1655,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1775,6 +1778,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1825,6 +1829,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/poem-bot" GH_AW_ENGINE_ID: "copilot" @@ -1940,6 +1945,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: poembot steps: @@ -1983,6 +1989,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml index 40647e3325..41181d0a18 100644 --- a/.github/workflows/portfolio-analyst.lock.yml +++ b/.github/workflows/portfolio-analyst.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -264,6 +265,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1089,6 +1091,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1198,6 +1201,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/portfolio-analyst" GH_AW_ENGINE_ID: "copilot" @@ -1265,6 +1269,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: portfolioanalyst steps: @@ -1308,6 +1313,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml index 18a9e83048..c01cadb91a 100644 --- a/.github/workflows/pr-nitpick-reviewer.lock.yml +++ b/.github/workflows/pr-nitpick-reviewer.lock.yml @@ -84,6 +84,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -329,6 +330,7 @@ jobs: actions: read contents: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1136,6 +1138,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1247,6 +1250,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1295,6 +1299,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/pr-nitpick-reviewer" GH_AW_ENGINE_ID: "copilot" @@ -1362,6 +1367,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: prnitpickreviewer steps: diff --git a/.github/workflows/pr-triage-agent.lock.yml b/.github/workflows/pr-triage-agent.lock.yml index 478ec072b3..f639588728 100644 --- a/.github/workflows/pr-triage-agent.lock.yml +++ b/.github/workflows/pr-triage-agent.lock.yml @@ -43,6 +43,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -253,6 +254,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1032,6 +1034,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1138,6 +1141,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1209,6 +1213,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/pr-triage-agent" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml index 757a5047d3..1ee3e896cf 100644 --- a/.github/workflows/prompt-clustering-analysis.lock.yml +++ b/.github/workflows/prompt-clustering-analysis.lock.yml @@ -53,6 +53,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -268,6 +269,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1121,6 +1123,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1225,6 +1228,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/prompt-clustering-analysis" GH_AW_ENGINE_ID: "claude" @@ -1291,6 +1295,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: promptclusteringanalysis steps: diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml index 649e26e579..67c8651c29 100644 --- a/.github/workflows/python-data-charts.lock.yml +++ b/.github/workflows/python-data-charts.lock.yml @@ -47,6 +47,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -260,6 +261,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1077,6 +1079,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1182,6 +1185,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/python-data-charts" GH_AW_ENGINE_ID: "copilot" @@ -1248,6 +1252,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: pythondatacharts steps: @@ -1291,6 +1296,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml index 920d8a6494..acb9b95ca6 100644 --- a/.github/workflows/q.lock.yml +++ b/.github/workflows/q.lock.yml @@ -92,6 +92,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -348,6 +349,7 @@ jobs: discussions: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1175,6 +1177,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1306,6 +1309,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1356,6 +1360,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/q" GH_AW_ENGINE_ID: "copilot" @@ -1456,6 +1461,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: q steps: diff --git a/.github/workflows/refiner.lock.yml b/.github/workflows/refiner.lock.yml index 86cb5f9147..ce6b4bee4a 100644 --- a/.github/workflows/refiner.lock.yml +++ b/.github/workflows/refiner.lock.yml @@ -56,6 +56,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -275,6 +276,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -998,6 +1000,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1116,6 +1119,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1155,6 +1159,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/refiner" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index d491a3d410..6afe383604 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -55,6 +55,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -254,6 +255,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -932,6 +934,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1031,6 +1034,7 @@ jobs: - activation - pre_activation runs-on: ubuntu-latest + continue-on-error: false outputs: release_tag: ${{ steps.compute_config.outputs.release_tag }} steps: @@ -1138,6 +1142,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1177,6 +1182,7 @@ jobs: id-token: write packages: write + continue-on-error: false outputs: release_id: ${{ steps.get_release.outputs.release_id }} steps: @@ -1320,6 +1326,7 @@ jobs: permissions: contents: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/release" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/repo-audit-analyzer.lock.yml b/.github/workflows/repo-audit-analyzer.lock.yml index d9de00b46d..587a1ace5a 100644 --- a/.github/workflows/repo-audit-analyzer.lock.yml +++ b/.github/workflows/repo-audit-analyzer.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -258,6 +259,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -944,6 +946,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1052,6 +1055,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/repo-audit-analyzer" GH_AW_ENGINE_ID: "copilot" @@ -1118,6 +1122,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: repoauditanalyzer steps: diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml index b4caacce48..e1361aee89 100644 --- a/.github/workflows/repo-tree-map.lock.yml +++ b/.github/workflows/repo-tree-map.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -245,6 +246,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -913,6 +915,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1018,6 +1021,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/repo-tree-map" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml index 466cac41a6..0d42e48377 100644 --- a/.github/workflows/repository-quality-improver.lock.yml +++ b/.github/workflows/repository-quality-improver.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -257,6 +258,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -951,6 +953,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1056,6 +1059,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/repository-quality-improver" GH_AW_ENGINE_ID: "copilot" @@ -1122,6 +1126,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: repositoryqualityimprover steps: diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml index be9a150d8f..ec8de282b3 100644 --- a/.github/workflows/research.lock.yml +++ b/.github/workflows/research.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -255,6 +256,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -939,6 +941,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1044,6 +1047,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/research" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml index 2c0ff65341..65e88a5e2b 100644 --- a/.github/workflows/safe-output-health.lock.yml +++ b/.github/workflows/safe-output-health.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -258,6 +259,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1083,6 +1085,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1187,6 +1190,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/safe-output-health" GH_AW_ENGINE_ID: "claude" @@ -1253,6 +1257,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: safeoutputhealth steps: diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml index 908a10cd6e..ff1d32d5ed 100644 --- a/.github/workflows/schema-consistency-checker.lock.yml +++ b/.github/workflows/schema-consistency-checker.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -253,6 +254,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -991,6 +993,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1095,6 +1098,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/schema-consistency-checker" GH_AW_ENGINE_ID: "claude" @@ -1161,6 +1165,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: schemaconsistencychecker steps: diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml index 1d387e0fe7..44c90141cf 100644 --- a/.github/workflows/scout.lock.yml +++ b/.github/workflows/scout.lock.yml @@ -111,6 +111,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -385,6 +386,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1190,6 +1192,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1303,6 +1306,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1351,6 +1355,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/scout" GH_AW_ENGINE_ID: "claude" @@ -1420,6 +1425,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: scout steps: diff --git a/.github/workflows/security-alert-burndown.campaign.g.lock.yml b/.github/workflows/security-alert-burndown.campaign.g.lock.yml index 22d8914929..324cc40e63 100644 --- a/.github/workflows/security-alert-burndown.campaign.g.lock.yml +++ b/.github/workflows/security-alert-burndown.campaign.g.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -245,6 +246,7 @@ jobs: contents: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1328,6 +1330,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1432,6 +1435,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_campaigns: ${{ steps.push_repo_memory_campaigns.outputs.validation_error }} validation_failed_campaigns: ${{ steps.push_repo_memory_campaigns.outputs.validation_failed }} @@ -1503,6 +1507,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/security-alert-burndown.campaign.g" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/security-compliance.lock.yml b/.github/workflows/security-compliance.lock.yml index c456665776..076792e635 100644 --- a/.github/workflows/security-compliance.lock.yml +++ b/.github/workflows/security-compliance.lock.yml @@ -53,6 +53,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -280,6 +281,7 @@ jobs: permissions: contents: read security-events: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -989,6 +991,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1094,6 +1097,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1163,6 +1167,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/security-compliance" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/security-review.lock.yml b/.github/workflows/security-review.lock.yml index bc8726012e..34afcd108f 100644 --- a/.github/workflows/security-review.lock.yml +++ b/.github/workflows/security-review.lock.yml @@ -56,6 +56,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -300,6 +301,7 @@ jobs: issues: read pull-requests: read security-events: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1120,6 +1122,7 @@ jobs: permissions: contents: read pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1223,6 +1226,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1269,6 +1273,7 @@ jobs: contents: read pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/security-review" GH_AW_ENGINE_ID: "copilot" @@ -1336,6 +1341,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: securityreview steps: diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml index 22ccfca50c..b345c72a73 100644 --- a/.github/workflows/semantic-function-refactor.lock.yml +++ b/.github/workflows/semantic-function-refactor.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -251,6 +252,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1065,6 +1067,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1166,6 +1169,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/semantic-function-refactor" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/sergo.lock.yml b/.github/workflows/sergo.lock.yml index 731679a343..12a28a01fe 100644 --- a/.github/workflows/sergo.lock.yml +++ b/.github/workflows/sergo.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -259,6 +260,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1029,6 +1031,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1137,6 +1140,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/sergo" GH_AW_ENGINE_ID: "claude" @@ -1204,6 +1208,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: sergo steps: diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index fadd48c99f..4bf8e7212e 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -269,6 +270,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1039,6 +1041,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1158,6 +1161,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1209,6 +1213,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/slide-deck-maintainer" GH_AW_ENGINE_ID: "copilot" @@ -1307,6 +1312,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: slidedeckmaintainer steps: diff --git a/.github/workflows/smoke-agent.lock.yml b/.github/workflows/smoke-agent.lock.yml index b5ae2775a5..9b05dcd602 100644 --- a/.github/workflows/smoke-agent.lock.yml +++ b/.github/workflows/smoke-agent.lock.yml @@ -54,6 +54,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -276,6 +277,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -976,6 +978,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1098,6 +1101,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1135,6 +1139,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-agent" GH_AW_ENGINE_ID: "codex" diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index 760395d19a..94a998b43f 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -68,6 +68,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -654,6 +655,7 @@ jobs: discussions: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -2548,6 +2550,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -2670,6 +2673,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -2709,6 +2713,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-claude" GH_AW_ENGINE_ID: "claude" @@ -2812,6 +2817,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: smokeclaude steps: diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml index ca51049554..55c9cdb4f3 100644 --- a/.github/workflows/smoke-codex.lock.yml +++ b/.github/workflows/smoke-codex.lock.yml @@ -61,6 +61,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -315,6 +316,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1447,6 +1449,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1567,6 +1570,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1604,6 +1608,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-codex" GH_AW_ENGINE_ID: "codex" @@ -1675,6 +1680,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: smokecodex steps: diff --git a/.github/workflows/smoke-copilot-arm.lock.yml b/.github/workflows/smoke-copilot-arm.lock.yml index e7911497ae..90b9a3483c 100644 --- a/.github/workflows/smoke-copilot-arm.lock.yml +++ b/.github/workflows/smoke-copilot-arm.lock.yml @@ -60,6 +60,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -319,6 +320,7 @@ jobs: discussions: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1973,6 +1975,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -2096,6 +2099,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -2134,6 +2138,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-copilot-arm" GH_AW_ENGINE_ID: "copilot" @@ -2206,6 +2211,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false steps: - name: Download agent output artifact continue-on-error: true @@ -2239,6 +2245,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: smokecopilotarm steps: diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml index 95e11080f2..5dcdd8b1ab 100644 --- a/.github/workflows/smoke-copilot.lock.yml +++ b/.github/workflows/smoke-copilot.lock.yml @@ -62,6 +62,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -322,6 +323,7 @@ jobs: discussions: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -2018,6 +2020,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -2141,6 +2144,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -2179,6 +2183,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-copilot" GH_AW_ENGINE_ID: "copilot" @@ -2251,6 +2256,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false steps: - name: Download agent output artifact continue-on-error: true @@ -2284,6 +2290,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: smokecopilot steps: diff --git a/.github/workflows/smoke-create-cross-repo-pr.lock.yml b/.github/workflows/smoke-create-cross-repo-pr.lock.yml index 726ec23a1f..43bb6a3cc7 100644 --- a/.github/workflows/smoke-create-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-create-cross-repo-pr.lock.yml @@ -56,6 +56,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -283,6 +284,7 @@ jobs: copilot-requests: write issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1100,6 +1102,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1236,6 +1239,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1275,6 +1279,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-create-cross-repo-pr" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/smoke-gemini.lock.yml b/.github/workflows/smoke-gemini.lock.yml index 25bc61c382..257391b358 100644 --- a/.github/workflows/smoke-gemini.lock.yml +++ b/.github/workflows/smoke-gemini.lock.yml @@ -61,6 +61,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -309,6 +310,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1187,6 +1189,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1307,6 +1310,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1344,6 +1348,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-gemini" GH_AW_ENGINE_ID: "gemini" @@ -1415,6 +1420,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: smokegemini steps: diff --git a/.github/workflows/smoke-multi-pr.lock.yml b/.github/workflows/smoke-multi-pr.lock.yml index 6624e5c1ad..9644bc817f 100644 --- a/.github/workflows/smoke-multi-pr.lock.yml +++ b/.github/workflows/smoke-multi-pr.lock.yml @@ -56,6 +56,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -292,6 +293,7 @@ jobs: permissions: contents: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1051,6 +1053,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1188,6 +1191,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1227,6 +1231,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-multi-pr" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/smoke-project.lock.yml b/.github/workflows/smoke-project.lock.yml index ca3e03baa2..4bfee0e526 100644 --- a/.github/workflows/smoke-project.lock.yml +++ b/.github/workflows/smoke-project.lock.yml @@ -54,6 +54,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -291,6 +292,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1444,6 +1446,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1581,6 +1584,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1620,6 +1624,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-project" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/smoke-temporary-id.lock.yml b/.github/workflows/smoke-temporary-id.lock.yml index 984a6892c5..82b2c78931 100644 --- a/.github/workflows/smoke-temporary-id.lock.yml +++ b/.github/workflows/smoke-temporary-id.lock.yml @@ -54,6 +54,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -287,6 +288,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1063,6 +1065,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1184,6 +1187,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1221,6 +1225,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-temporary-id" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/smoke-test-tools.lock.yml b/.github/workflows/smoke-test-tools.lock.yml index c124d6af7c..5373f7d0ad 100644 --- a/.github/workflows/smoke-test-tools.lock.yml +++ b/.github/workflows/smoke-test-tools.lock.yml @@ -56,6 +56,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -276,6 +277,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -956,6 +958,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1077,6 +1080,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1114,6 +1118,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-test-tools" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/smoke-update-cross-repo-pr.lock.yml b/.github/workflows/smoke-update-cross-repo-pr.lock.yml index 3237af5668..ca720ad377 100644 --- a/.github/workflows/smoke-update-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-update-cross-repo-pr.lock.yml @@ -56,6 +56,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: ${{ steps.add-comment.outputs.comment-id }} @@ -290,6 +291,7 @@ jobs: copilot-requests: write issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1102,6 +1104,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1224,6 +1227,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1263,6 +1267,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-update-cross-repo-pr" GH_AW_ENGINE_ID: "copilot" @@ -1366,6 +1371,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: smokeupdatecrossrepopr steps: diff --git a/.github/workflows/smoke-workflow-call.lock.yml b/.github/workflows/smoke-workflow-call.lock.yml index 9d2660c02e..79d5c9a847 100644 --- a/.github/workflows/smoke-workflow-call.lock.yml +++ b/.github/workflows/smoke-workflow-call.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -244,6 +245,7 @@ jobs: permissions: contents: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -920,6 +922,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1019,6 +1022,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1056,6 +1060,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/smoke-workflow-call" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index 05ad1cb510..2d441904f1 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -58,6 +58,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -280,6 +281,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1076,6 +1078,7 @@ jobs: permissions: contents: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1179,6 +1182,7 @@ jobs: contents: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/stale-repo-identifier" GH_AW_ENGINE_ID: "copilot" @@ -1248,6 +1252,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: stalerepoidentifier steps: @@ -1291,6 +1296,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml index b55441ee49..7410c61f8c 100644 --- a/.github/workflows/static-analysis-report.lock.yml +++ b/.github/workflows/static-analysis-report.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -254,6 +255,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1065,6 +1067,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1169,6 +1172,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/static-analysis-report" GH_AW_ENGINE_ID: "claude" @@ -1235,6 +1239,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: staticanalysisreport steps: diff --git a/.github/workflows/step-name-alignment.lock.yml b/.github/workflows/step-name-alignment.lock.yml index 670a431acf..9e0033dc67 100644 --- a/.github/workflows/step-name-alignment.lock.yml +++ b/.github/workflows/step-name-alignment.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -245,6 +246,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1019,6 +1021,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1120,6 +1123,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/step-name-alignment" GH_AW_ENGINE_ID: "claude" @@ -1188,6 +1192,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: stepnamealignment steps: diff --git a/.github/workflows/sub-issue-closer.lock.yml b/.github/workflows/sub-issue-closer.lock.yml index 6fd4db42ac..919a39e8f3 100644 --- a/.github/workflows/sub-issue-closer.lock.yml +++ b/.github/workflows/sub-issue-closer.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -238,6 +239,7 @@ jobs: issues: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1012,6 +1014,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1116,6 +1119,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/sub-issue-closer" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml index d2b4e58383..63f082423d 100644 --- a/.github/workflows/super-linter.lock.yml +++ b/.github/workflows/super-linter.lock.yml @@ -47,6 +47,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -261,6 +262,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -973,6 +975,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1075,6 +1078,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/super-linter" GH_AW_ENGINE_ID: "copilot" @@ -1145,6 +1149,7 @@ jobs: packages: read statuses: write + continue-on-error: false steps: - name: Checkout repository uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 @@ -1189,6 +1194,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: superlinter steps: diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml index 94ade104a3..2fc78eaa04 100644 --- a/.github/workflows/technical-doc-writer.lock.yml +++ b/.github/workflows/technical-doc-writer.lock.yml @@ -51,6 +51,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -266,6 +267,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1086,6 +1088,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1209,6 +1212,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/technical-doc-writer" GH_AW_ENGINE_ID: "copilot" @@ -1309,6 +1313,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: technicaldocwriter steps: @@ -1352,6 +1357,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/terminal-stylist.lock.yml b/.github/workflows/terminal-stylist.lock.yml index 3461ae90d0..3e90b2184e 100644 --- a/.github/workflows/terminal-stylist.lock.yml +++ b/.github/workflows/terminal-stylist.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -245,6 +246,7 @@ jobs: contents: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -921,6 +923,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1026,6 +1029,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/terminal-stylist" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/test-create-pr-error-handling.lock.yml b/.github/workflows/test-create-pr-error-handling.lock.yml index 31983f197e..57d81ec6d7 100644 --- a/.github/workflows/test-create-pr-error-handling.lock.yml +++ b/.github/workflows/test-create-pr-error-handling.lock.yml @@ -41,6 +41,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -243,6 +244,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1006,6 +1008,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1126,6 +1129,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/test-create-pr-error-handling" GH_AW_ENGINE_ID: "claude" @@ -1223,6 +1227,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: testcreateprerrorhandling steps: diff --git a/.github/workflows/test-dispatcher.lock.yml b/.github/workflows/test-dispatcher.lock.yml index 002a4151b8..8cf9ae53b2 100644 --- a/.github/workflows/test-dispatcher.lock.yml +++ b/.github/workflows/test-dispatcher.lock.yml @@ -40,6 +40,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -231,6 +232,7 @@ jobs: permissions: contents: read issues: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -863,6 +865,7 @@ jobs: runs-on: ubuntu-slim permissions: actions: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -964,6 +967,7 @@ jobs: permissions: actions: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/test-dispatcher" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/test-project-url-default.lock.yml b/.github/workflows/test-project-url-default.lock.yml index cd9e2067c0..c81a2d7a55 100644 --- a/.github/workflows/test-project-url-default.lock.yml +++ b/.github/workflows/test-project-url-default.lock.yml @@ -40,6 +40,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -230,6 +231,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1106,6 +1108,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1207,6 +1210,7 @@ jobs: permissions: contents: read timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/test-project-url-default" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/test-workflow.lock.yml b/.github/workflows/test-workflow.lock.yml index d174eae037..ad2f21766a 100644 --- a/.github/workflows/test-workflow.lock.yml +++ b/.github/workflows/test-workflow.lock.yml @@ -45,6 +45,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -230,6 +231,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: testworkflow outputs: diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml index 08ca865c34..28353e1a84 100644 --- a/.github/workflows/tidy.lock.yml +++ b/.github/workflows/tidy.lock.yml @@ -64,6 +64,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -296,6 +297,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1078,6 +1080,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1197,6 +1200,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1246,6 +1250,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/tidy" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml index 3d0871e45e..61fd5cb029 100644 --- a/.github/workflows/typist.lock.yml +++ b/.github/workflows/typist.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -250,6 +251,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-claude-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1001,6 +1003,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1105,6 +1108,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/typist" GH_AW_ENGINE_ID: "claude" diff --git a/.github/workflows/ubuntu-image-analyzer.lock.yml b/.github/workflows/ubuntu-image-analyzer.lock.yml index f892bf245c..086c185fe8 100644 --- a/.github/workflows/ubuntu-image-analyzer.lock.yml +++ b/.github/workflows/ubuntu-image-analyzer.lock.yml @@ -47,6 +47,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -248,6 +249,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -968,6 +970,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1087,6 +1090,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_skip_if_match.outputs.skip_check_ok == 'true') }} matched_command: '' @@ -1138,6 +1142,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/ubuntu-image-analyzer" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml index 5c17f859cb..8a50f1998f 100644 --- a/.github/workflows/unbloat-docs.lock.yml +++ b/.github/workflows/unbloat-docs.lock.yml @@ -60,6 +60,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -304,6 +305,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1245,6 +1247,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1362,6 +1365,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_command_position.outputs.command_position_ok == 'true') }} matched_command: ${{ steps.check_command_position.outputs.matched_command }} @@ -1412,6 +1416,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/unbloat-docs" GH_AW_ENGINE_ID: "claude" @@ -1512,6 +1517,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: unbloatdocs steps: @@ -1555,6 +1561,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml index 633a9ec138..1e8a892e87 100644 --- a/.github/workflows/video-analyzer.lock.yml +++ b/.github/workflows/video-analyzer.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -251,6 +252,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -965,6 +967,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1067,6 +1070,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/video-analyzer" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/weekly-editors-health-check.lock.yml b/.github/workflows/weekly-editors-health-check.lock.yml index 3aaef6a20c..621783e2e6 100644 --- a/.github/workflows/weekly-editors-health-check.lock.yml +++ b/.github/workflows/weekly-editors-health-check.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -245,6 +246,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -1015,6 +1017,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1141,6 +1144,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/weekly-editors-health-check" GH_AW_ENGINE_ID: "copilot" @@ -1240,6 +1244,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml index db358edcae..3a2f118aa3 100644 --- a/.github/workflows/weekly-issue-summary.lock.yml +++ b/.github/workflows/weekly-issue-summary.lock.yml @@ -49,6 +49,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -264,6 +265,7 @@ jobs: issues: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: ".png,.jpg,.jpeg" @@ -988,6 +990,7 @@ jobs: contents: write discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1096,6 +1099,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/weekly-issue-summary" GH_AW_ENGINE_ID: "copilot" @@ -1163,6 +1167,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + continue-on-error: false env: GH_AW_WORKFLOW_ID_SANITIZED: weeklyissuesummary steps: @@ -1206,6 +1211,7 @@ jobs: permissions: contents: write timeout-minutes: 10 + continue-on-error: false outputs: branch_name: ${{ steps.upload_assets.outputs.branch_name }} published_count: ${{ steps.upload_assets.outputs.published_count }} diff --git a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml index 942b273e59..171b31bc25 100644 --- a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml +++ b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml @@ -44,6 +44,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -243,6 +244,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -926,6 +928,7 @@ jobs: contents: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1052,6 +1055,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/weekly-safe-outputs-spec-review" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/workflow-generator.lock.yml b/.github/workflows/workflow-generator.lock.yml index b602f283fa..fd12c1d187 100644 --- a/.github/workflows/workflow-generator.lock.yml +++ b/.github/workflows/workflow-generator.lock.yml @@ -49,6 +49,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: body: ${{ steps.sanitized.outputs.body }} comment_id: "" @@ -282,6 +283,7 @@ jobs: contents: read issues: read pull-requests: read + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1062,6 +1064,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1164,6 +1167,7 @@ jobs: permissions: actions: read contents: read + continue-on-error: false outputs: activated: ${{ (steps.check_membership.outputs.is_team_member == 'true') && (steps.check_rate_limit.outputs.rate_limit_ok == 'true') }} matched_command: '' @@ -1217,6 +1221,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/workflow-generator" GH_AW_ENGINE_ID: "copilot" @@ -1306,6 +1311,7 @@ jobs: contents: read issues: write timeout-minutes: 5 + continue-on-error: false steps: - name: Checkout actions folder uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 diff --git a/.github/workflows/workflow-health-manager.lock.yml b/.github/workflows/workflow-health-manager.lock.yml index 480fd2540c..7e30f5b1fd 100644 --- a/.github/workflows/workflow-health-manager.lock.yml +++ b/.github/workflows/workflow-health-manager.lock.yml @@ -50,6 +50,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -261,6 +262,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1129,6 +1131,7 @@ jobs: discussions: write issues: write pull-requests: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1229,6 +1232,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: activated: ${{ steps.check_membership.outputs.is_team_member == 'true' }} matched_command: '' @@ -1265,6 +1269,7 @@ jobs: concurrency: group: "push-repo-memory-${{ github.repository }}" cancel-in-progress: false + continue-on-error: false outputs: validation_error_default: ${{ steps.push_repo_memory_default.outputs.validation_error }} validation_failed_default: ${{ steps.push_repo_memory_default.outputs.validation_failed }} @@ -1336,6 +1341,7 @@ jobs: issues: write pull-requests: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/workflow-health-manager" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/workflow-normalizer.lock.yml b/.github/workflows/workflow-normalizer.lock.yml index 793e558036..96f97f5211 100644 --- a/.github/workflows/workflow-normalizer.lock.yml +++ b/.github/workflows/workflow-normalizer.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -247,6 +248,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1003,6 +1005,7 @@ jobs: permissions: contents: read issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1109,6 +1112,7 @@ jobs: contents: read issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/workflow-normalizer" GH_AW_ENGINE_ID: "copilot" diff --git a/.github/workflows/workflow-skill-extractor.lock.yml b/.github/workflows/workflow-skill-extractor.lock.yml index a3f6db1b07..d538bf2f1a 100644 --- a/.github/workflows/workflow-skill-extractor.lock.yml +++ b/.github/workflows/workflow-skill-extractor.lock.yml @@ -48,6 +48,7 @@ jobs: runs-on: ubuntu-slim permissions: contents: read + continue-on-error: false outputs: comment_id: "" comment_repo: "" @@ -246,6 +247,7 @@ jobs: pull-requests: read concurrency: group: "gh-aw-copilot-${{ github.workflow }}" + continue-on-error: false env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GH_AW_ASSETS_ALLOWED_EXTS: "" @@ -1008,6 +1010,7 @@ jobs: contents: read discussions: write issues: write + continue-on-error: false outputs: noop_message: ${{ steps.noop.outputs.noop_message }} tools_reported: ${{ steps.missing_tool.outputs.tools_reported }} @@ -1113,6 +1116,7 @@ jobs: discussions: write issues: write timeout-minutes: 15 + continue-on-error: false env: GH_AW_CALLER_WORKFLOW_ID: "${{ github.repository }}/workflow-skill-extractor" GH_AW_ENGINE_ID: "copilot" diff --git a/pkg/workflow/compiler_jobs.go b/pkg/workflow/compiler_jobs.go index d53d837873..d483bc8fe0 100644 --- a/pkg/workflow/compiler_jobs.go +++ b/pkg/workflow/compiler_jobs.go @@ -622,7 +622,7 @@ func (c *Compiler) buildCustomJobs(data *WorkflowData, activationJobCreated bool // Extract continue-on-error for custom jobs if continueOnError, hasCOE := configMap["continue-on-error"]; hasCOE { if coeVal, ok := continueOnError.(bool); ok { - job.ContinueOnError = coeVal + job.ContinueOnError = &coeVal } } diff --git a/pkg/workflow/compiler_jobs_test.go b/pkg/workflow/compiler_jobs_test.go index e1cd592b31..f476900895 100644 --- a/pkg/workflow/compiler_jobs_test.go +++ b/pkg/workflow/compiler_jobs_test.go @@ -2583,7 +2583,7 @@ func TestBuildCustomJobsAllNewFieldsViaWorkflowData(t *testing.T) { if job.TimeoutMinutes != 30 { t.Errorf("TimeoutMinutes = %d, want 30", job.TimeoutMinutes) } - if !job.ContinueOnError { + if job.ContinueOnError == nil || !*job.ContinueOnError { t.Error("Expected ContinueOnError to be true") } if job.Concurrency != "concurrency: ci-group" { diff --git a/pkg/workflow/jobs.go b/pkg/workflow/jobs.go index 019578d68d..aaa54c5689 100644 --- a/pkg/workflow/jobs.go +++ b/pkg/workflow/jobs.go @@ -28,7 +28,7 @@ type Job struct { Container string // Job container configuration Services string // Job services configuration Env map[string]string // Job-level environment variables - ContinueOnError bool // continue-on-error flag for the job + ContinueOnError *bool // continue-on-error flag for the job (nil means unset) Steps []string Needs []string // Job dependencies (needs clause) Outputs map[string]string @@ -323,8 +323,10 @@ func (jm *JobManager) renderJob(job *Job) string { fmt.Fprintf(&yaml, " timeout-minutes: %d\n", job.TimeoutMinutes) } - // Add continue-on-error, always reflecting the configured value - fmt.Fprintf(&yaml, " continue-on-error: %t\n", job.ContinueOnError) + // Add continue-on-error only when explicitly set + if job.ContinueOnError != nil { + fmt.Fprintf(&yaml, " continue-on-error: %t\n", *job.ContinueOnError) + } // Add environment variables section if len(job.Env) > 0 {