From 0f401d107431f2f74135c108d734f86a7b7767d4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 20 Aug 2026 04:53:54 +0000 Subject: [PATCH 1/5] Initial plan From e726292daf91a9ab570d57feda7cc83469acdf6c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 20 Aug 2026 05:02:35 +0000 Subject: [PATCH 2/5] Fix activation artifact name Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/cli/logs_artifact_set_test.go | 4 ++-- pkg/constants/job_constants.go | 5 +++-- pkg/workflow/compiler_activation_outputs_test.go | 13 +++++++++++++ .../TestWasmGolden_AllEngines/claude.golden | 4 ++-- .../testdata/TestWasmGolden_AllEngines/codex.golden | 4 ++-- .../TestWasmGolden_AllEngines/copilot.golden | 4 ++-- .../TestWasmGolden_AllEngines/gemini.golden | 4 ++-- .../testdata/TestWasmGolden_AllEngines/pi.golden | 4 ++-- .../basic-copilot.golden | 4 ++-- .../playwright-cli-mode.golden | 4 ++-- .../smoke-copilot.golden | 4 ++-- .../with-imports.golden | 4 ++-- 12 files changed, 36 insertions(+), 22 deletions(-) diff --git a/pkg/cli/logs_artifact_set_test.go b/pkg/cli/logs_artifact_set_test.go index 47268d2e2d8..ab380bd5038 100644 --- a/pkg/cli/logs_artifact_set_test.go +++ b/pkg/cli/logs_artifact_set_test.go @@ -123,7 +123,7 @@ func TestResolveArtifactFilter(t *testing.T) { { name: "activation resolves to activation artifact", sets: []string{"activation"}, - expected: []string{"activation"}, + expected: []string{constants.ActivationArtifactName}, }, { name: "agent resolves to agent artifact and output fallback", @@ -153,7 +153,7 @@ func TestResolveArtifactFilter(t *testing.T) { { name: "github-api resolves to activation and agent", sets: []string{"github-api"}, - expected: []string{"activation", "agent"}, + expected: []string{constants.ActivationArtifactName, "agent"}, }, { name: "usage resolves to usage artifact", diff --git a/pkg/constants/job_constants.go b/pkg/constants/job_constants.go index 2fd11f87b09..5e54009f08e 100644 --- a/pkg/constants/job_constants.go +++ b/pkg/constants/job_constants.go @@ -153,8 +153,9 @@ const OtlpExportErrorsFilename = "otlp-export-errors.jsonl" const ArtifactPrefixOutputName = "artifact_prefix" // ActivationArtifactName is the artifact name for the activation job output -// (aw_info.json and prompt.txt). -const ActivationArtifactName = "activation" +// (aw_info.json and prompt.txt). Keep the suffix because "activation" is +// rejected as an artifact name by the GitHub Actions artifact API. +const ActivationArtifactName = "activation-artifact" // ActivationStageAmbientFoldersStepName is the step name used to stage ambient // folders before the activation artifact is packaged. It is a stable anchor diff --git a/pkg/workflow/compiler_activation_outputs_test.go b/pkg/workflow/compiler_activation_outputs_test.go index dbd3773c9e0..046ffb23862 100644 --- a/pkg/workflow/compiler_activation_outputs_test.go +++ b/pkg/workflow/compiler_activation_outputs_test.go @@ -3,11 +3,24 @@ package workflow import ( + "strings" "testing" "github.com/stretchr/testify/assert" ) +func TestActivationArtifactNameIsValid(t *testing.T) { + data := &WorkflowData{On: `"on": + push:`} + ctx := &activationJobBuildContext{data: data} + compiler := NewCompiler() + + compiler.addActivationArtifactUploadStep(ctx) + + assert.Contains(t, strings.Join(ctx.steps, ""), "name: activation-artifact") + assert.NotContains(t, strings.Join(ctx.steps, ""), "name: activation\n") +} + // TestConfigureActivationNeedsAndCondition_EngineEnvJobReferences tests that custom jobs // referenced via needs..outputs.* in engine.env values are added to the activation // job's needs list. diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden index 35584aec6c9..4b185728817 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -353,7 +353,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden index 736f94e8816..f13781f3fe8 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden @@ -273,7 +273,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -354,7 +354,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden index 05702cfb013..eb240c609c5 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -353,7 +353,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden index 239f7e74ca1..b8e7c86d772 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -344,7 +344,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden index 7e373dd6559..2ae5cc765b8 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -343,7 +343,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden index 04c00245e8a..933582ed939 100644 --- a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden +++ b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -353,7 +353,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden index b52785c5050..94c5ce879ee 100644 --- a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden +++ b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -353,7 +353,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden index 121818af687..b1b938b930b 100644 --- a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden +++ b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden @@ -307,7 +307,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -429,7 +429,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden index c4d1e666938..5d98ebb06cd 100644 --- a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden +++ b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden @@ -273,7 +273,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -354,7 +354,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: From 875d8f9ce5235c5d35122fd7e91fbb5c2c0cac1e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 20 Aug 2026 05:03:50 +0000 Subject: [PATCH 3/5] Tighten artifact rename regression test Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/compiler_activation_outputs_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/workflow/compiler_activation_outputs_test.go b/pkg/workflow/compiler_activation_outputs_test.go index 046ffb23862..c25dfc63054 100644 --- a/pkg/workflow/compiler_activation_outputs_test.go +++ b/pkg/workflow/compiler_activation_outputs_test.go @@ -18,7 +18,6 @@ func TestActivationArtifactNameIsValid(t *testing.T) { compiler.addActivationArtifactUploadStep(ctx) assert.Contains(t, strings.Join(ctx.steps, ""), "name: activation-artifact") - assert.NotContains(t, strings.Join(ctx.steps, ""), "name: activation\n") } // TestConfigureActivationNeedsAndCondition_EngineEnvJobReferences tests that custom jobs From 87a4e8fb1f05b1507cf77b12ef9757a102967b14 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 20 Aug 2026 13:25:55 +0000 Subject: [PATCH 4/5] Plan feedback follow-up Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/ab-testing-advisor.lock.yml | 6 +++--- .github/workflows/ace-editor.lock.yml | 4 ++-- .github/workflows/agent-job-health.lock.yml | 6 +++--- .github/workflows/agent-performance-analyzer.lock.yml | 6 +++--- .github/workflows/agent-persona-explorer.lock.yml | 6 +++--- .github/workflows/agentic-token-audit.lock.yml | 6 +++--- .github/workflows/agentic-token-optimizer.lock.yml | 4 ++-- .github/workflows/agentic-token-trend-audit.lock.yml | 6 +++--- .github/workflows/ai-moderator.lock.yml | 4 ++-- .github/workflows/api-consumption-report.lock.yml | 6 +++--- .github/workflows/approach-validator.lock.yml | 6 +++--- .github/workflows/archie.lock.yml | 6 +++--- .github/workflows/architecture-guardian.lock.yml | 6 +++--- .../workflows/archivx-agentic-workflows-analyzer.lock.yml | 6 +++--- .github/workflows/artifacts-summary.lock.yml | 6 +++--- .github/workflows/audit-workflows.lock.yml | 6 +++--- .github/workflows/auto-triage-issues.lock.yml | 6 +++--- .github/workflows/avenger.lock.yml | 6 +++--- .github/workflows/aw-failure-investigator.lock.yml | 6 +++--- .github/workflows/blog-auditor.lock.yml | 6 +++--- .github/workflows/bot-detection.lock.yml | 4 ++-- .github/workflows/breaking-change-checker.lock.yml | 6 +++--- .github/workflows/changeset.lock.yml | 6 +++--- .github/workflows/chaos-pr-bundle-fuzzer.lock.yml | 6 +++--- .github/workflows/ci-coach.lock.yml | 6 +++--- .github/workflows/ci-doctor.lock.yml | 6 +++--- .github/workflows/claude-code-user-docs-review.lock.yml | 6 +++--- .github/workflows/cli-consistency-checker.lock.yml | 6 +++--- .github/workflows/cli-version-checker.lock.yml | 6 +++--- .github/workflows/cloclo.lock.yml | 6 +++--- .github/workflows/code-scanning-fixer.lock.yml | 6 +++--- .github/workflows/code-simplifier.lock.yml | 6 +++--- .github/workflows/codex-github-remote-mcp-test.lock.yml | 4 ++-- .github/workflows/commit-changes-analyzer.lock.yml | 6 +++--- .github/workflows/constraint-solving-potd.lock.yml | 6 +++--- .github/workflows/contribution-check.lock.yml | 6 +++--- .github/workflows/copilot-agent-analysis.lock.yml | 6 +++--- .github/workflows/copilot-centralization-drilldown.lock.yml | 6 +++--- .github/workflows/copilot-centralization-optimizer.lock.yml | 6 +++--- .github/workflows/copilot-cli-deep-research.lock.yml | 6 +++--- .github/workflows/copilot-opt.lock.yml | 6 +++--- .github/workflows/copilot-pr-merged-report.lock.yml | 6 +++--- .github/workflows/copilot-pr-nlp-analysis.lock.yml | 6 +++--- .github/workflows/copilot-pr-prompt-analysis.lock.yml | 6 +++--- .github/workflows/copilot-session-insights.lock.yml | 6 +++--- .github/workflows/craft.lock.yml | 6 +++--- .../workflows/daily-action-setup-security-audit.lock.yml | 6 +++--- .../workflows/daily-agent-of-the-day-blog-writer.lock.yml | 6 +++--- .github/workflows/daily-agentrx-trace-optimizer.lock.yml | 6 +++--- .github/workflows/daily-ambient-context-optimizer.lock.yml | 6 +++--- .github/workflows/daily-architecture-diagram.lock.yml | 6 +++--- .github/workflows/daily-arxiv-researcher.lock.yml | 6 +++--- .github/workflows/daily-assign-issue-to-user.lock.yml | 6 +++--- .../daily-astrostylelite-markdown-spellcheck.lock.yml | 6 +++--- .../workflows/daily-aw-cross-repo-compile-check.lock.yml | 6 +++--- .../workflows/daily-awf-spec-compiler-surfacing.lock.yml | 6 +++--- .github/workflows/daily-byok-ollama-test.lock.yml | 6 +++--- .github/workflows/daily-cache-strategy-analyzer.lock.yml | 6 +++--- .github/workflows/daily-caveman-optimizer.lock.yml | 6 +++--- .github/workflows/daily-choice-test.lock.yml | 6 +++--- .github/workflows/daily-cli-performance.lock.yml | 6 +++--- .github/workflows/daily-cli-tools-tester.lock.yml | 6 +++--- .github/workflows/daily-code-debt-aider.lock.yml | 6 +++--- .github/workflows/daily-code-metrics.lock.yml | 6 +++--- .github/workflows/daily-community-attribution.lock.yml | 6 +++--- .github/workflows/daily-compiler-quality.lock.yml | 6 +++--- .../workflows/daily-compiler-threat-spec-optimizer.lock.yml | 6 +++--- .github/workflows/daily-credit-limit-test.lock.yml | 6 +++--- .github/workflows/daily-doc-healer.lock.yml | 6 +++--- .github/workflows/daily-doc-updater.lock.yml | 6 +++--- .github/workflows/daily-elixir-credo-snippet-audit.lock.yml | 6 +++--- .github/workflows/daily-evals-report.lock.yml | 6 +++--- .github/workflows/daily-experiment-report.lock.yml | 6 +++--- .github/workflows/daily-fact.lock.yml | 6 +++--- .github/workflows/daily-file-diet.lock.yml | 6 +++--- .github/workflows/daily-firewall-report.lock.yml | 6 +++--- .github/workflows/daily-formal-spec-verifier.lock.yml | 6 +++--- .github/workflows/daily-function-namer.lock.yml | 6 +++--- .github/workflows/daily-geo-optimizer.lock.yml | 6 +++--- .github/workflows/daily-github-docs-seo-optimizer.lock.yml | 6 +++--- .github/workflows/daily-go-test-parallelizer.lock.yml | 6 +++--- .github/workflows/daily-go-test-stubs-aider.lock.yml | 6 +++--- .github/workflows/daily-graft-intelligence.lock.yml | 6 +++--- .github/workflows/daily-hippo-learn.lock.yml | 6 +++--- .github/workflows/daily-issues-report.lock.yml | 6 +++--- .github/workflows/daily-malicious-code-scan.lock.yml | 4 ++-- .github/workflows/daily-max-ai-credits-test.lock.yml | 6 +++--- .github/workflows/daily-mcp-concurrency-analysis.lock.yml | 6 +++--- .github/workflows/daily-model-inventory.lock.yml | 6 +++--- .github/workflows/daily-model-resolution.lock.yml | 6 +++--- .github/workflows/daily-multi-device-docs-tester.lock.yml | 6 +++--- .github/workflows/daily-news.lock.yml | 6 +++--- .github/workflows/daily-observability-report.lock.yml | 6 +++--- .github/workflows/daily-performance-summary.lock.yml | 6 +++--- .github/workflows/daily-pr-review-cursor.lock.yml | 6 +++--- .github/workflows/daily-regression-audit-kiro.lock.yml | 6 +++--- .github/workflows/daily-regulatory.lock.yml | 6 +++--- .github/workflows/daily-reliability-review.lock.yml | 6 +++--- .github/workflows/daily-rendering-scripts-verifier.lock.yml | 6 +++--- .github/workflows/daily-repo-chronicle.lock.yml | 6 +++--- .github/workflows/daily-safe-output-integrator.lock.yml | 6 +++--- .github/workflows/daily-safe-output-optimizer.lock.yml | 6 +++--- .github/workflows/daily-safe-outputs-conformance.lock.yml | 6 +++--- .github/workflows/daily-safeoutputs-git-simulator.lock.yml | 6 +++--- .github/workflows/daily-schema-audit-cursor.lock.yml | 6 +++--- .github/workflows/daily-secrets-analysis.lock.yml | 6 +++--- .github/workflows/daily-security-observability.lock.yml | 6 +++--- .github/workflows/daily-security-red-team.lock.yml | 6 +++--- .github/workflows/daily-semgrep-scan.lock.yml | 6 +++--- .github/workflows/daily-spdd-spec-planner.lock.yml | 6 +++--- .github/workflows/daily-spec-coverage-kiro.lock.yml | 6 +++--- .github/workflows/daily-spending-forecast.lock.yml | 6 +++--- .github/workflows/daily-squid-image-scan.lock.yml | 6 +++--- .github/workflows/daily-syntax-error-quality.lock.yml | 6 +++--- .github/workflows/daily-team-evolution-insights.lock.yml | 6 +++--- .github/workflows/daily-team-status.lock.yml | 6 +++--- .github/workflows/daily-testify-uber-super-expert.lock.yml | 6 +++--- .github/workflows/daily-token-consumption-report.lock.yml | 6 +++--- .github/workflows/daily-vulnhunter-scan.lock.yml | 6 +++--- .../daily-windows-terminal-integration-builder.lock.yml | 6 +++--- .github/workflows/daily-workflow-updater.lock.yml | 6 +++--- .github/workflows/daily-yamllint-fixer.lock.yml | 6 +++--- .github/workflows/dataflow-pr-discussion-dataset.lock.yml | 6 +++--- .github/workflows/dead-code-remover.lock.yml | 6 +++--- .github/workflows/deep-report.lock.yml | 6 +++--- .github/workflows/deepsec-security-scan.lock.yml | 6 +++--- .github/workflows/delight.lock.yml | 6 +++--- .github/workflows/dependabot-burner.lock.yml | 6 +++--- .github/workflows/dependabot-go-checker.lock.yml | 6 +++--- .github/workflows/deployment-incident-monitor.lock.yml | 6 +++--- .github/workflows/design-decision-gate.lock.yml | 6 +++--- .github/workflows/designer-drift-audit.lock.yml | 6 +++--- .github/workflows/detection-analysis-report.lock.yml | 6 +++--- .github/workflows/dev-hawk.lock.yml | 6 +++--- .github/workflows/dev.lock.yml | 6 +++--- .github/workflows/developer-docs-consolidator.lock.yml | 6 +++--- .github/workflows/dictation-prompt.lock.yml | 6 +++--- .github/workflows/docs-noob-tester.lock.yml | 6 +++--- .github/workflows/draft-pr-cleanup.lock.yml | 6 +++--- .github/workflows/duplicate-code-detector.lock.yml | 6 +++--- .github/workflows/eslint-miner.lock.yml | 6 +++--- .github/workflows/eslint-monster.lock.yml | 6 +++--- .github/workflows/eslint-refiner.lock.yml | 6 +++--- .github/workflows/evoskill-evolver.lock.yml | 6 +++--- .github/workflows/example-failure-category-filter.lock.yml | 6 +++--- .github/workflows/example-permissions-warning.lock.yml | 4 ++-- .github/workflows/example-workflow-analyzer.lock.yml | 6 +++--- .github/workflows/firewall-escape.lock.yml | 6 +++--- .github/workflows/firewall.lock.yml | 4 ++-- .github/workflows/functional-pragmatist.lock.yml | 6 +++--- .github/workflows/github-mcp-structural-analysis.lock.yml | 6 +++--- .github/workflows/github-mcp-tools-report.lock.yml | 6 +++--- .github/workflows/github-remote-mcp-auth-test.lock.yml | 6 +++--- .github/workflows/glossary-maintainer.lock.yml | 6 +++--- .github/workflows/go-fan.lock.yml | 6 +++--- .github/workflows/go-logger.lock.yml | 6 +++--- .github/workflows/go-pattern-detector.lock.yml | 6 +++--- .github/workflows/gpclean.lock.yml | 6 +++--- .github/workflows/grumpy-reviewer.lock.yml | 6 +++--- .github/workflows/hippo-embed.lock.yml | 4 ++-- .github/workflows/hourly-ci-cleaner.lock.yml | 6 +++--- .github/workflows/impeccable-skills-reviewer.lock.yml | 6 +++--- .github/workflows/instructions-janitor.lock.yml | 6 +++--- .github/workflows/issue-arborist.lock.yml | 6 +++--- .github/workflows/issue-monster.lock.yml | 6 +++--- .github/workflows/issue-triage-agent.lock.yml | 6 +++--- .github/workflows/jsweep.lock.yml | 6 +++--- .github/workflows/layout-spec-maintainer.lock.yml | 6 +++--- .github/workflows/lint-monster.lock.yml | 6 +++--- .github/workflows/linter-miner.lock.yml | 6 +++--- .github/workflows/lockfile-stats.lock.yml | 6 +++--- .github/workflows/mattpocock-skills-reviewer.lock.yml | 6 +++--- .github/workflows/mcp-inspector.lock.yml | 6 +++--- .github/workflows/mergefest.lock.yml | 6 +++--- .github/workflows/metrics-collector.lock.yml | 6 +++--- .github/workflows/necromancer.lock.yml | 6 +++--- .github/workflows/notion-issue-summary.lock.yml | 4 ++-- .github/workflows/objective-impact-report.lock.yml | 6 +++--- .github/workflows/org-health-report.lock.yml | 6 +++--- .github/workflows/outcome-collector.lock.yml | 6 +++--- .github/workflows/pdf-summary.lock.yml | 6 +++--- .github/workflows/plan.lock.yml | 6 +++--- .github/workflows/poem-bot.lock.yml | 6 +++--- .github/workflows/ponytail-reviewer.lock.yml | 6 +++--- .github/workflows/portfolio-analyst.lock.yml | 6 +++--- .github/workflows/pr-code-quality-reviewer.lock.yml | 6 +++--- .github/workflows/pr-description-caveman.lock.yml | 6 +++--- .github/workflows/pr-nitpick-reviewer.lock.yml | 6 +++--- .github/workflows/pr-sous-chef.lock.yml | 6 +++--- .github/workflows/pr-triage-agent.lock.yml | 6 +++--- .github/workflows/prompt-clustering-analysis.lock.yml | 6 +++--- .github/workflows/purelock.lock.yml | 6 +++--- .github/workflows/python-data-charts.lock.yml | 6 +++--- .github/workflows/q.lock.yml | 6 +++--- .github/workflows/refactoring-cadence.lock.yml | 6 +++--- .github/workflows/refiner.lock.yml | 6 +++--- .github/workflows/release.lock.yml | 4 ++-- .github/workflows/repo-audit-analyzer.lock.yml | 6 +++--- .github/workflows/repo-tree-map.lock.yml | 6 +++--- .github/workflows/repository-quality-improver.lock.yml | 6 +++--- .github/workflows/research.lock.yml | 6 +++--- .github/workflows/ruflo-backed-task.lock.yml | 6 +++--- .github/workflows/safe-output-health.lock.yml | 6 +++--- .github/workflows/schema-consistency-checker.lock.yml | 6 +++--- .github/workflows/schema-feature-coverage.lock.yml | 6 +++--- .github/workflows/scout.lock.yml | 6 +++--- .github/workflows/security-compliance.lock.yml | 6 +++--- .github/workflows/security-review.lock.yml | 6 +++--- .github/workflows/semantic-function-refactor.lock.yml | 6 +++--- .github/workflows/sergo.lock.yml | 6 +++--- .github/workflows/sighthound-security-scan.lock.yml | 6 +++--- .github/workflows/skillet.lock.yml | 6 +++--- .github/workflows/slide-deck-maintainer.lock.yml | 6 +++--- .github/workflows/smoke-agent-all-merged.lock.yml | 6 +++--- .github/workflows/smoke-agent-all-none.lock.yml | 6 +++--- .github/workflows/smoke-agent-public-approved.lock.yml | 6 +++--- .github/workflows/smoke-agent-public-none.lock.yml | 6 +++--- .github/workflows/smoke-agent-scoped-approved.lock.yml | 6 +++--- .github/workflows/smoke-aider.lock.yml | 6 +++--- .github/workflows/smoke-call-workflow.lock.yml | 6 +++--- .github/workflows/smoke-checkout-pr-dispatch.lock.yml | 6 +++--- .github/workflows/smoke-ci.lock.yml | 4 ++-- .github/workflows/smoke-claude-on-copilot.lock.yml | 6 +++--- .github/workflows/smoke-claude.lock.yml | 6 +++--- .github/workflows/smoke-codex.lock.yml | 6 +++--- .github/workflows/smoke-copilot-aoai-apikey.lock.yml | 6 +++--- .github/workflows/smoke-copilot-aoai-entra.lock.yml | 6 +++--- .github/workflows/smoke-copilot-arm.lock.yml | 6 +++--- .github/workflows/smoke-copilot-auto.lock.yml | 6 +++--- .github/workflows/smoke-copilot-mai.lock.yml | 6 +++--- .github/workflows/smoke-copilot-sdk.lock.yml | 6 +++--- .github/workflows/smoke-copilot-small.lock.yml | 6 +++--- .github/workflows/smoke-copilot-sub-agents.lock.yml | 6 +++--- .github/workflows/smoke-copilot.lock.yml | 6 +++--- .github/workflows/smoke-create-cross-repo-pr.lock.yml | 6 +++--- .github/workflows/smoke-crush.lock.yml | 6 +++--- .github/workflows/smoke-cursor.lock.yml | 6 +++--- .github/workflows/smoke-deepseek-harness.lock.yml | 6 +++--- .github/workflows/smoke-gemini.lock.yml | 6 +++--- .github/workflows/smoke-github-claude.lock.yml | 6 +++--- .github/workflows/smoke-goose.lock.yml | 6 +++--- .github/workflows/smoke-kiro.lock.yml | 6 +++--- .github/workflows/smoke-multi-pr.lock.yml | 6 +++--- .github/workflows/smoke-opencode.lock.yml | 6 +++--- .github/workflows/smoke-otel-backends.lock.yml | 6 +++--- .github/workflows/smoke-pi.lock.yml | 6 +++--- .github/workflows/smoke-project.lock.yml | 6 +++--- .github/workflows/smoke-pydantic.lock.yml | 6 +++--- .github/workflows/smoke-service-ports.lock.yml | 6 +++--- .github/workflows/smoke-temporary-id.lock.yml | 6 +++--- .github/workflows/smoke-test-tools.lock.yml | 6 +++--- .github/workflows/smoke-update-cross-repo-pr.lock.yml | 6 +++--- .github/workflows/smoke-workflow-call-with-inputs.lock.yml | 6 +++--- .github/workflows/smoke-workflow-call.lock.yml | 6 +++--- .github/workflows/spec-enforcer.lock.yml | 6 +++--- .github/workflows/spec-extractor.lock.yml | 6 +++--- .github/workflows/spec-librarian.lock.yml | 6 +++--- .github/workflows/squad-game-planner.lock.yml | 6 +++--- .github/workflows/squad-implement-worker.lock.yml | 6 +++--- .github/workflows/squad-plan.lock.yml | 6 +++--- .github/workflows/squad.lock.yml | 6 +++--- .github/workflows/stale-pr-cleanup.lock.yml | 6 +++--- .github/workflows/stale-repo-identifier.lock.yml | 6 +++--- .github/workflows/static-analysis-report.lock.yml | 6 +++--- .github/workflows/step-name-alignment.lock.yml | 6 +++--- .github/workflows/sub-issue-closer.lock.yml | 6 +++--- .github/workflows/super-linter.lock.yml | 6 +++--- .github/workflows/technical-doc-writer.lock.yml | 6 +++--- .github/workflows/terminal-stylist.lock.yml | 6 +++--- .github/workflows/test-quality-sentinel.lock.yml | 6 +++--- .github/workflows/tidy.lock.yml | 6 +++--- .github/workflows/typist.lock.yml | 6 +++--- .github/workflows/ubuntu-image-analyzer.lock.yml | 6 +++--- .github/workflows/uk-ai-operational-resilience.lock.yml | 6 +++--- .github/workflows/unbloat-docs.lock.yml | 6 +++--- .github/workflows/update-astro.lock.yml | 6 +++--- .github/workflows/video-analyzer.lock.yml | 6 +++--- .github/workflows/visual-regression-checker.lock.yml | 6 +++--- .github/workflows/weekly-blog-post-writer.lock.yml | 6 +++--- .github/workflows/weekly-editors-health-check.lock.yml | 6 +++--- .github/workflows/weekly-issue-summary.lock.yml | 6 +++--- .github/workflows/weekly-safe-outputs-spec-review.lock.yml | 6 +++--- .github/workflows/workflow-generator.lock.yml | 6 +++--- .github/workflows/workflow-health-manager.lock.yml | 6 +++--- .github/workflows/workflow-normalizer.lock.yml | 6 +++--- .github/workflows/workflow-skill-extractor.lock.yml | 6 +++--- 286 files changed, 846 insertions(+), 846 deletions(-) diff --git a/.github/workflows/ab-testing-advisor.lock.yml b/.github/workflows/ab-testing-advisor.lock.yml index 1edeaabb4bf..db17f5b7297 100644 --- a/.github/workflows/ab-testing-advisor.lock.yml +++ b/.github/workflows/ab-testing-advisor.lock.yml @@ -354,7 +354,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -453,7 +453,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1369,7 +1369,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ace-editor.lock.yml b/.github/workflows/ace-editor.lock.yml index 9292124b6c6..c507a130cd9 100644 --- a/.github/workflows/ace-editor.lock.yml +++ b/.github/workflows/ace-editor.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/agent-job-health.lock.yml b/.github/workflows/agent-job-health.lock.yml index 62146909ec7..769010afaf5 100644 --- a/.github/workflows/agent-job-health.lock.yml +++ b/.github/workflows/agent-job-health.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -505,7 +505,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1630,7 +1630,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/agent-performance-analyzer.lock.yml b/.github/workflows/agent-performance-analyzer.lock.yml index 82e490f19fe..f5512ac71c7 100644 --- a/.github/workflows/agent-performance-analyzer.lock.yml +++ b/.github/workflows/agent-performance-analyzer.lock.yml @@ -400,7 +400,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -538,7 +538,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1624,7 +1624,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/agent-persona-explorer.lock.yml b/.github/workflows/agent-persona-explorer.lock.yml index e000ad53dfe..c9cf16ab120 100644 --- a/.github/workflows/agent-persona-explorer.lock.yml +++ b/.github/workflows/agent-persona-explorer.lock.yml @@ -398,7 +398,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -526,7 +526,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1482,7 +1482,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/agentic-token-audit.lock.yml b/.github/workflows/agentic-token-audit.lock.yml index e75790fbbb3..9c425632524 100644 --- a/.github/workflows/agentic-token-audit.lock.yml +++ b/.github/workflows/agentic-token-audit.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -491,7 +491,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1536,7 +1536,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/agentic-token-optimizer.lock.yml b/.github/workflows/agentic-token-optimizer.lock.yml index 64543872ae2..cbe73e2f3c4 100644 --- a/.github/workflows/agentic-token-optimizer.lock.yml +++ b/.github/workflows/agentic-token-optimizer.lock.yml @@ -344,7 +344,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -457,7 +457,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) diff --git a/.github/workflows/agentic-token-trend-audit.lock.yml b/.github/workflows/agentic-token-trend-audit.lock.yml index 4877ee3a0de..d561e7d75f5 100644 --- a/.github/workflows/agentic-token-trend-audit.lock.yml +++ b/.github/workflows/agentic-token-trend-audit.lock.yml @@ -338,7 +338,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Setup Python uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 @@ -1477,7 +1477,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml index e14225ce9cf..fd2811f7f26 100644 --- a/.github/workflows/ai-moderator.lock.yml +++ b/.github/workflows/ai-moderator.lock.yml @@ -423,7 +423,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -522,7 +522,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory diff --git a/.github/workflows/api-consumption-report.lock.yml b/.github/workflows/api-consumption-report.lock.yml index d24fbea72be..b478a710d38 100644 --- a/.github/workflows/api-consumption-report.lock.yml +++ b/.github/workflows/api-consumption-report.lock.yml @@ -375,7 +375,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -518,7 +518,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1615,7 +1615,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/approach-validator.lock.yml b/.github/workflows/approach-validator.lock.yml index d8f98b5bdc4..6ddf1694e84 100644 --- a/.github/workflows/approach-validator.lock.yml +++ b/.github/workflows/approach-validator.lock.yml @@ -449,7 +449,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -551,7 +551,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1598,7 +1598,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml index 130edf0af4a..b709fbbd7c2 100644 --- a/.github/workflows/archie.lock.yml +++ b/.github/workflows/archie.lock.yml @@ -409,7 +409,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1492,7 +1492,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/architecture-guardian.lock.yml b/.github/workflows/architecture-guardian.lock.yml index 37aaa85a649..7e3c05fc2dc 100644 --- a/.github/workflows/architecture-guardian.lock.yml +++ b/.github/workflows/architecture-guardian.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Collect architecture metrics run: "set -euo pipefail\nmkdir -p /tmp/gh-aw/agent\n\n# Read thresholds from .architecture.yml or use defaults\nFILE_LINES_BLOCKER=1000\nFILE_LINES_WARNING=500\nFUNCTION_LINES=80\nMAX_EXPORTS=10\n\nif [ -f .architecture.yml ]; then\n b=$(grep -E '^\\s*file_lines_blocker:' .architecture.yml 2>/dev/null | awk '{print $2}' | tr -d '\"' | head -1 || true)\n w=$(grep -E '^\\s*file_lines_warning:' .architecture.yml 2>/dev/null | awk '{print $2}' | tr -d '\"' | head -1 || true)\n f=$(grep -E '^\\s*function_lines:' .architecture.yml 2>/dev/null | awk '{print $2}' | tr -d '\"' | head -1 || true)\n e=$(grep -E '^\\s*max_exports:' .architecture.yml 2>/dev/null | awk '{print $2}' | tr -d '\"' | head -1 || true)\n [[ -n \"${b:-}\" && \"$b\" =~ ^[0-9]+$ ]] && FILE_LINES_BLOCKER=$b\n [[ -n \"${w:-}\" && \"$w\" =~ ^[0-9]+$ ]] && FILE_LINES_WARNING=$w\n [[ -n \"${f:-}\" && \"$f\" =~ ^[0-9]+$ ]] && FUNCTION_LINES=$f\n [[ -n \"${e:-}\" && \"$e\" =~ ^[0-9]+$ ]] && MAX_EXPORTS=$e\nfi\n\n# Get changed Go/JS files in last 24 hours, excluding tests and vendor paths\nCHANGED_FILES=$(git log --since=\"24 hours ago\" --name-only --pretty=format: \\\n | sort -u \\\n | grep -E '\\.(go|js|cjs|mjs)$' \\\n | grep -vE '(node_modules/|vendor/|\\.git/|_test\\.go$)' \\\n | while IFS= read -r f; do [ -f \"$f\" ] && echo \"$f\"; done \\\n || true)\n\nif [ -z \"$CHANGED_FILES\" ]; then\n jq -n \\\n --argjson blocker \"$FILE_LINES_BLOCKER\" \\\n --argjson warning \"$FILE_LINES_WARNING\" \\\n --argjson func_lines \"$FUNCTION_LINES\" \\\n --argjson max_exports \"$MAX_EXPORTS\" \\\n '{noop: true, thresholds: {file_lines_blocker: $blocker, file_lines_warning: $warning, function_lines: $func_lines, max_exports: $max_exports}, files: [], import_cycles: \"\"}' \\\n > /tmp/gh-aw/agent/arch-metrics.json\n echo \"No changed Go/JS files found in the last 24 hours.\"\n exit 0\nfi\n\n# Build file metrics array\nFILES_JSON=\"[]\"\nwhile IFS= read -r FILE; do\n [ -z \"$FILE\" ] && continue\n LINES=$(wc -l < \"$FILE\" 2>/dev/null | tr -d ' ' || echo 0)\n EXT=\"${FILE##*.}\"\n\n if [[ \"$EXT\" == \"go\" ]]; then\n # Function sizes: \"func declaration\\tline_count\" per function\n # Pattern matches both regular functions (^func Name) and receiver methods (^func (r *T) Name)\n FUNC_DATA=$(awk '/^func /{if(start>0 && name!=\"\") printf \"%s\\t%d\\n\", name, NR-start; name=$0; start=NR} END{if(start>0 && name!=\"\") printf \"%s\\t%d\\n\", name, NR-start+1}' \"$FILE\" 2>/dev/null | head -50 || true)\n # Export count and names (top-level exported identifiers start with uppercase)\n EXPORT_COUNT=$(grep -cE \"^func [A-Z]|^type [A-Z]|^var [A-Z]|^const [A-Z]\" \"$FILE\" 2>/dev/null || echo 0)\n EXPORT_NAMES=$(grep -nE \"^func [A-Z]|^type [A-Z]|^var [A-Z]|^const [A-Z]\" \"$FILE\" 2>/dev/null | head -20 || true)\n else\n # JS/CJS/MJS: capture named functions, arrow functions, and class methods\n FUNC_DATA=$(grep -nE \"^function |^const [a-zA-Z_$][a-zA-Z0-9_$]* = (function|\\(|async \\(|async function)|^(export (default )?function|export const [a-zA-Z_$][a-zA-Z0-9_$]* =)|^[a-zA-Z_$][a-zA-Z0-9_$]*\\s*\\([^)]*\\)\\s*\\{\" \"$FILE\" 2>/dev/null | head -50 || true)\n CJS_COUNT=$(grep -cE \"^module\\.exports|^exports\\.\" \"$FILE\" 2>/dev/null || echo 0)\n ESM_COUNT=$(grep -cE \"^export \" \"$FILE\" 2>/dev/null || echo 0)\n EXPORT_COUNT=$((CJS_COUNT + ESM_COUNT))\n EXPORT_NAMES=$(grep -nE \"^export |^module\\.exports|^exports\\.\" \"$FILE\" 2>/dev/null | head -20 || true)\n fi\n\n FILES_JSON=$(jq \\\n --arg file \"$FILE\" \\\n --argjson lines \"$LINES\" \\\n --argjson exports \"$EXPORT_COUNT\" \\\n --arg func_data \"${FUNC_DATA:-}\" \\\n --arg export_names \"${EXPORT_NAMES:-}\" \\\n '. + [{file: $file, lines: $lines, export_count: $exports, func_data: $func_data, export_names: $export_names}]' \\\n <<< \"$FILES_JSON\")\ndone <<< \"$CHANGED_FILES\"\n\n# Check Go import cycles once across all packages\n# Note: go list may also emit errors for syntax issues; grep filters to only cycle errors\nIMPORT_CYCLES=$(go list ./... 2>&1 | grep -iE \"import cycle|cycle not allowed\" || true)\n\njq -n \\\n --argjson blocker \"$FILE_LINES_BLOCKER\" \\\n --argjson warning \"$FILE_LINES_WARNING\" \\\n --argjson func_lines \"$FUNCTION_LINES\" \\\n --argjson max_exports \"$MAX_EXPORTS\" \\\n --argjson files \"$FILES_JSON\" \\\n --arg import_cycles \"$IMPORT_CYCLES\" \\\n '{noop: false, thresholds: {file_lines_blocker: $blocker, file_lines_warning: $warning, function_lines: $func_lines, max_exports: $max_exports}, files: $files, import_cycles: $import_cycles}' \\\n > /tmp/gh-aw/agent/arch-metrics.json\n\nFILE_COUNT=$(echo \"$CHANGED_FILES\" | wc -l | tr -d ' ')\necho \"✅ Pre-computed metrics for $FILE_COUNT file(s) → /tmp/gh-aw/agent/arch-metrics.json\"" @@ -1414,7 +1414,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/archivx-agentic-workflows-analyzer.lock.yml b/.github/workflows/archivx-agentic-workflows-analyzer.lock.yml index 7fa3c574beb..955cae6f824 100644 --- a/.github/workflows/archivx-agentic-workflows-analyzer.lock.yml +++ b/.github/workflows/archivx-agentic-workflows-analyzer.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -492,7 +492,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Restore shared agentic logs cache id: restore-agentic-logs-cache @@ -1524,7 +1524,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml index 1a7d9292faf..dfdea6fb109 100644 --- a/.github/workflows/artifacts-summary.lock.yml +++ b/.github/workflows/artifacts-summary.lock.yml @@ -343,7 +343,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1360,7 +1360,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml index 8a4fb534d89..ea3dcaee39b 100644 --- a/.github/workflows/audit-workflows.lock.yml +++ b/.github/workflows/audit-workflows.lock.yml @@ -424,7 +424,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -566,7 +566,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1704,7 +1704,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/auto-triage-issues.lock.yml b/.github/workflows/auto-triage-issues.lock.yml index f413629542e..9db940cdf32 100644 --- a/.github/workflows/auto-triage-issues.lock.yml +++ b/.github/workflows/auto-triage-issues.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -475,7 +475,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Fetch unlabeled issues run: |- @@ -1390,7 +1390,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/avenger.lock.yml b/.github/workflows/avenger.lock.yml index 02b7646c89a..535ba027489 100644 --- a/.github/workflows/avenger.lock.yml +++ b/.github/workflows/avenger.lock.yml @@ -370,7 +370,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -485,7 +485,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Install Make run: | @@ -1545,7 +1545,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/aw-failure-investigator.lock.yml b/.github/workflows/aw-failure-investigator.lock.yml index 5190e8712eb..10c67274b04 100644 --- a/.github/workflows/aw-failure-investigator.lock.yml +++ b/.github/workflows/aw-failure-investigator.lock.yml @@ -400,7 +400,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -536,7 +536,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -1636,7 +1636,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml index fd4f8b1a5fe..9defbc1ece9 100644 --- a/.github/workflows/blog-auditor.lock.yml +++ b/.github/workflows/blog-auditor.lock.yml @@ -401,7 +401,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -507,7 +507,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1518,7 +1518,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/bot-detection.lock.yml b/.github/workflows/bot-detection.lock.yml index daa2d8f977f..3bb948f582b 100644 --- a/.github/workflows/bot-detection.lock.yml +++ b/.github/workflows/bot-detection.lock.yml @@ -367,7 +367,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -475,7 +475,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml index 5bb5ca85bfa..4de82f182bd 100644 --- a/.github/workflows/breaking-change-checker.lock.yml +++ b/.github/workflows/breaking-change-checker.lock.yml @@ -394,7 +394,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -499,7 +499,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1451,7 +1451,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml index 3949d2cc659..12474316d62 100644 --- a/.github/workflows/changeset.lock.yml +++ b/.github/workflows/changeset.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1479,7 +1479,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/chaos-pr-bundle-fuzzer.lock.yml b/.github/workflows/chaos-pr-bundle-fuzzer.lock.yml index 86cd6c3141b..8bd6385668b 100644 --- a/.github/workflows/chaos-pr-bundle-fuzzer.lock.yml +++ b/.github/workflows/chaos-pr-bundle-fuzzer.lock.yml @@ -355,7 +355,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -452,7 +452,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1369,7 +1369,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml index 7ea62d09c17..eb4808fd6ca 100644 --- a/.github/workflows/ci-coach.lock.yml +++ b/.github/workflows/ci-coach.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -515,7 +515,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1522,7 +1522,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index 3f1ec0fd597..bc934fae3c3 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -450,7 +450,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -557,7 +557,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1698,7 +1698,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/claude-code-user-docs-review.lock.yml b/.github/workflows/claude-code-user-docs-review.lock.yml index 631f0ce2bc5..3c346ebcd16 100644 --- a/.github/workflows/claude-code-user-docs-review.lock.yml +++ b/.github/workflows/claude-code-user-docs-review.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -467,7 +467,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1484,7 +1484,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml index d4c1fc8c771..208253be97f 100644 --- a/.github/workflows/cli-consistency-checker.lock.yml +++ b/.github/workflows/cli-consistency-checker.lock.yml @@ -346,7 +346,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -453,7 +453,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1375,7 +1375,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml index e58dd55d03e..2c8e106bef1 100644 --- a/.github/workflows/cli-version-checker.lock.yml +++ b/.github/workflows/cli-version-checker.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1476,7 +1476,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml index 7e236f1a490..4e0b924ea9b 100644 --- a/.github/workflows/cloclo.lock.yml +++ b/.github/workflows/cloclo.lock.yml @@ -472,7 +472,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -609,7 +609,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1823,7 +1823,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/code-scanning-fixer.lock.yml b/.github/workflows/code-scanning-fixer.lock.yml index 8e1cb7e229f..256ffa50a8e 100644 --- a/.github/workflows/code-scanning-fixer.lock.yml +++ b/.github/workflows/code-scanning-fixer.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1501,7 +1501,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/code-simplifier.lock.yml b/.github/workflows/code-simplifier.lock.yml index 94bdb50294c..09881947ff1 100644 --- a/.github/workflows/code-simplifier.lock.yml +++ b/.github/workflows/code-simplifier.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: EXPR_GITHUB_REPOSITORY: ${{ github.repository }} @@ -1427,7 +1427,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/codex-github-remote-mcp-test.lock.yml b/.github/workflows/codex-github-remote-mcp-test.lock.yml index 5fc4f4e9138..61a2e23aeb2 100644 --- a/.github/workflows/codex-github-remote-mcp-test.lock.yml +++ b/.github/workflows/codex-github-remote-mcp-test.lock.yml @@ -346,7 +346,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -447,7 +447,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml index c8c43901c86..26bb387970e 100644 --- a/.github/workflows/commit-changes-analyzer.lock.yml +++ b/.github/workflows/commit-changes-analyzer.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1303,7 +1303,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/constraint-solving-potd.lock.yml b/.github/workflows/constraint-solving-potd.lock.yml index 0760b5e307b..c2f3b34afc2 100644 --- a/.github/workflows/constraint-solving-potd.lock.yml +++ b/.github/workflows/constraint-solving-potd.lock.yml @@ -351,7 +351,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -456,7 +456,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1381,7 +1381,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/contribution-check.lock.yml b/.github/workflows/contribution-check.lock.yml index c116b14727d..ca82a3a8808 100644 --- a/.github/workflows/contribution-check.lock.yml +++ b/.github/workflows/contribution-check.lock.yml @@ -359,7 +359,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -479,7 +479,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Fetch and filter PRs run: |- @@ -1555,7 +1555,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml index f1475343f38..fb21cf1bfcc 100644 --- a/.github/workflows/copilot-agent-analysis.lock.yml +++ b/.github/workflows/copilot-agent-analysis.lock.yml @@ -417,7 +417,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -525,7 +525,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1564,7 +1564,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-centralization-drilldown.lock.yml b/.github/workflows/copilot-centralization-drilldown.lock.yml index a8157e5cc1d..84a600258af 100644 --- a/.github/workflows/copilot-centralization-drilldown.lock.yml +++ b/.github/workflows/copilot-centralization-drilldown.lock.yml @@ -335,7 +335,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -434,7 +434,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: CANDIDATE_JSON: ${{ inputs.candidate_json }} @@ -1344,7 +1344,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-centralization-optimizer.lock.yml b/.github/workflows/copilot-centralization-optimizer.lock.yml index cfac73d02ec..6c3248a36dd 100644 --- a/.github/workflows/copilot-centralization-optimizer.lock.yml +++ b/.github/workflows/copilot-centralization-optimizer.lock.yml @@ -342,7 +342,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -444,7 +444,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1409,7 +1409,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-cli-deep-research.lock.yml b/.github/workflows/copilot-cli-deep-research.lock.yml index 3479facfc2f..ce9dc410df3 100644 --- a/.github/workflows/copilot-cli-deep-research.lock.yml +++ b/.github/workflows/copilot-cli-deep-research.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -464,7 +464,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1421,7 +1421,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-opt.lock.yml b/.github/workflows/copilot-opt.lock.yml index a03cd93e8a9..3c0e2c4dcbf 100644 --- a/.github/workflows/copilot-opt.lock.yml +++ b/.github/workflows/copilot-opt.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1480,7 +1480,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml index 39a857447d7..6bb906ca23a 100644 --- a/.github/workflows/copilot-pr-merged-report.lock.yml +++ b/.github/workflows/copilot-pr-merged-report.lock.yml @@ -340,7 +340,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -449,7 +449,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1365,7 +1365,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml index 4ac1ef65b3b..467d878010d 100644 --- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml +++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml @@ -374,7 +374,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -487,7 +487,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1532,7 +1532,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml index e7e21e264bf..ee0d271c418 100644 --- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml +++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1473,7 +1473,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml index 800ec76f94f..3c93657e6bd 100644 --- a/.github/workflows/copilot-session-insights.lock.yml +++ b/.github/workflows/copilot-session-insights.lock.yml @@ -392,7 +392,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -504,7 +504,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1585,7 +1585,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml index acb7896f472..a4ec2b1a6fa 100644 --- a/.github/workflows/craft.lock.yml +++ b/.github/workflows/craft.lock.yml @@ -403,7 +403,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -506,7 +506,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -1483,7 +1483,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-action-setup-security-audit.lock.yml b/.github/workflows/daily-action-setup-security-audit.lock.yml index 0b999e13cda..7ce02c8b725 100644 --- a/.github/workflows/daily-action-setup-security-audit.lock.yml +++ b/.github/workflows/daily-action-setup-security-audit.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1458,7 +1458,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-agent-of-the-day-blog-writer.lock.yml b/.github/workflows/daily-agent-of-the-day-blog-writer.lock.yml index e8c85b4c563..a2de99253c8 100644 --- a/.github/workflows/daily-agent-of-the-day-blog-writer.lock.yml +++ b/.github/workflows/daily-agent-of-the-day-blog-writer.lock.yml @@ -385,7 +385,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -522,7 +522,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone wiki-memory branch (default) @@ -1629,7 +1629,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-agentrx-trace-optimizer.lock.yml b/.github/workflows/daily-agentrx-trace-optimizer.lock.yml index 0ef85807c58..d669f9b3636 100644 --- a/.github/workflows/daily-agentrx-trace-optimizer.lock.yml +++ b/.github/workflows/daily-agentrx-trace-optimizer.lock.yml @@ -404,7 +404,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -549,7 +549,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1664,7 +1664,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-ambient-context-optimizer.lock.yml b/.github/workflows/daily-ambient-context-optimizer.lock.yml index 41e5258ab83..1abcc7f1f88 100644 --- a/.github/workflows/daily-ambient-context-optimizer.lock.yml +++ b/.github/workflows/daily-ambient-context-optimizer.lock.yml @@ -355,7 +355,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -493,7 +493,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Restore shared agentic logs cache id: restore-agentic-logs-cache @@ -1522,7 +1522,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-architecture-diagram.lock.yml b/.github/workflows/daily-architecture-diagram.lock.yml index 895b0cd7b33..3cdd04eb5db 100644 --- a/.github/workflows/daily-architecture-diagram.lock.yml +++ b/.github/workflows/daily-architecture-diagram.lock.yml @@ -389,7 +389,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -497,7 +497,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1551,7 +1551,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-arxiv-researcher.lock.yml b/.github/workflows/daily-arxiv-researcher.lock.yml index f59f1f97c30..8b766f8aee2 100644 --- a/.github/workflows/daily-arxiv-researcher.lock.yml +++ b/.github/workflows/daily-arxiv-researcher.lock.yml @@ -334,7 +334,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -427,7 +427,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Fetch and parse arXiv papers uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 @@ -1597,7 +1597,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml index 1b829bf62b4..3871488f033 100644 --- a/.github/workflows/daily-assign-issue-to-user.lock.yml +++ b/.github/workflows/daily-assign-issue-to-user.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -456,7 +456,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1442,7 +1442,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml b/.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml index b917a5d22b2..69d3af8b12d 100644 --- a/.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml +++ b/.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml @@ -387,7 +387,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -493,7 +493,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download spellcheck artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1494,7 +1494,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-aw-cross-repo-compile-check.lock.yml b/.github/workflows/daily-aw-cross-repo-compile-check.lock.yml index 2c5af6a86a8..e70512bc782 100644 --- a/.github/workflows/daily-aw-cross-repo-compile-check.lock.yml +++ b/.github/workflows/daily-aw-cross-repo-compile-check.lock.yml @@ -367,7 +367,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -476,7 +476,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1515,7 +1515,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-awf-spec-compiler-surfacing.lock.yml b/.github/workflows/daily-awf-spec-compiler-surfacing.lock.yml index 366f30dd94e..42123d1a2a7 100644 --- a/.github/workflows/daily-awf-spec-compiler-surfacing.lock.yml +++ b/.github/workflows/daily-awf-spec-compiler-surfacing.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1405,7 +1405,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-byok-ollama-test.lock.yml b/.github/workflows/daily-byok-ollama-test.lock.yml index e17f0074485..ad0dca756c5 100644 --- a/.github/workflows/daily-byok-ollama-test.lock.yml +++ b/.github/workflows/daily-byok-ollama-test.lock.yml @@ -340,7 +340,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -443,7 +443,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: OLLAMA_INSTALL_SHA256: 25f64b810b947145095956533e1bdf56eacea2673c55a7e586be4515fc882c9f @@ -1392,7 +1392,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-cache-strategy-analyzer.lock.yml b/.github/workflows/daily-cache-strategy-analyzer.lock.yml index 99fc433060a..168abfba8b2 100644 --- a/.github/workflows/daily-cache-strategy-analyzer.lock.yml +++ b/.github/workflows/daily-cache-strategy-analyzer.lock.yml @@ -417,7 +417,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -557,7 +557,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1671,7 +1671,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-caveman-optimizer.lock.yml b/.github/workflows/daily-caveman-optimizer.lock.yml index c309e0c947c..b8022e253cc 100644 --- a/.github/workflows/daily-caveman-optimizer.lock.yml +++ b/.github/workflows/daily-caveman-optimizer.lock.yml @@ -405,7 +405,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1574,7 +1574,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-choice-test.lock.yml b/.github/workflows/daily-choice-test.lock.yml index ed72a3c7af3..7288d3104f4 100644 --- a/.github/workflows/daily-choice-test.lock.yml +++ b/.github/workflows/daily-choice-test.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1437,7 +1437,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-cli-performance.lock.yml b/.github/workflows/daily-cli-performance.lock.yml index 39b7d9c635f..f7173fd244d 100644 --- a/.github/workflows/daily-cli-performance.lock.yml +++ b/.github/workflows/daily-cli-performance.lock.yml @@ -407,7 +407,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -514,7 +514,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1731,7 +1731,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-cli-tools-tester.lock.yml b/.github/workflows/daily-cli-tools-tester.lock.yml index 9edc7cbee93..d943812559b 100644 --- a/.github/workflows/daily-cli-tools-tester.lock.yml +++ b/.github/workflows/daily-cli-tools-tester.lock.yml @@ -354,7 +354,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -490,7 +490,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1487,7 +1487,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-code-debt-aider.lock.yml b/.github/workflows/daily-code-debt-aider.lock.yml index 44c7eda32fd..2664decaef4 100644 --- a/.github/workflows/daily-code-debt-aider.lock.yml +++ b/.github/workflows/daily-code-debt-aider.lock.yml @@ -344,7 +344,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -444,7 +444,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1362,7 +1362,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml index 0fb7e98bf48..aa80e32f5dc 100644 --- a/.github/workflows/daily-code-metrics.lock.yml +++ b/.github/workflows/daily-code-metrics.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -500,7 +500,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Setup Python environment run: "# Create working directory for Python scripts\nmkdir -p /tmp/gh-aw/python\nmkdir -p /tmp/gh-aw/python/data\nmkdir -p /tmp/gh-aw/python/charts\nmkdir -p /tmp/gh-aw/python/artifacts\n\necho \"Python environment setup complete\"\necho \"Working directory: /tmp/gh-aw/python\"\necho \"Data directory: /tmp/gh-aw/python/data\"\necho \"Charts directory: /tmp/gh-aw/python/charts\"\necho \"Artifacts directory: /tmp/gh-aw/python/artifacts\"\n" @@ -1748,7 +1748,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-community-attribution.lock.yml b/.github/workflows/daily-community-attribution.lock.yml index 147c60acc9d..380919c3826 100644 --- a/.github/workflows/daily-community-attribution.lock.yml +++ b/.github/workflows/daily-community-attribution.lock.yml @@ -413,7 +413,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone wiki-memory branch (default) @@ -1618,7 +1618,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-compiler-quality.lock.yml b/.github/workflows/daily-compiler-quality.lock.yml index 909774ab151..29ffa59156c 100644 --- a/.github/workflows/daily-compiler-quality.lock.yml +++ b/.github/workflows/daily-compiler-quality.lock.yml @@ -409,7 +409,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1572,7 +1572,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-compiler-threat-spec-optimizer.lock.yml b/.github/workflows/daily-compiler-threat-spec-optimizer.lock.yml index 7e538964c93..514ba9fbb13 100644 --- a/.github/workflows/daily-compiler-threat-spec-optimizer.lock.yml +++ b/.github/workflows/daily-compiler-threat-spec-optimizer.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -468,7 +468,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1509,7 +1509,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-credit-limit-test.lock.yml b/.github/workflows/daily-credit-limit-test.lock.yml index c301730b4d1..628d356a0f1 100644 --- a/.github/workflows/daily-credit-limit-test.lock.yml +++ b/.github/workflows/daily-credit-limit-test.lock.yml @@ -330,7 +330,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -432,7 +432,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1319,7 +1319,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-doc-healer.lock.yml b/.github/workflows/daily-doc-healer.lock.yml index 81c965b7a0e..067f38037cb 100644 --- a/.github/workflows/daily-doc-healer.lock.yml +++ b/.github/workflows/daily-doc-healer.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1682,7 +1682,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml index 952d18dadf5..87319f68f59 100644 --- a/.github/workflows/daily-doc-updater.lock.yml +++ b/.github/workflows/daily-doc-updater.lock.yml @@ -409,7 +409,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -507,7 +507,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1482,7 +1482,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-elixir-credo-snippet-audit.lock.yml b/.github/workflows/daily-elixir-credo-snippet-audit.lock.yml index 5f571128cab..bcdf9c8b7dd 100644 --- a/.github/workflows/daily-elixir-credo-snippet-audit.lock.yml +++ b/.github/workflows/daily-elixir-credo-snippet-audit.lock.yml @@ -350,7 +350,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -462,7 +462,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Install Credo tooling project run: "set -euo pipefail\nmkdir -p /tmp/gh-aw/agent/elixir-credo\ncd /tmp/gh-aw/agent/elixir-credo\nmix new credo_audit --sup\ncd credo_audit\ncat > mix.exs <<'EOF'\ndefmodule CredoAudit.MixProject do\n use Mix.Project\n\n def project do\n [\n app: :credo_audit,\n version: \"0.1.0\",\n elixir: \"~> 1.17\",\n start_permanent: Mix.env() == :prod,\n deps: deps()\n ]\n end\n\n def application do\n [\n extra_applications: [:logger]\n ]\n end\n\n defp deps do\n [\n {:credo, \"~> 1.7\", only: [:dev, :test], runtime: false}\n ]\n end\nend\nEOF\nMIX_ENV=dev mix deps.get\nMIX_ENV=dev mix deps.compile\nMIX_ENV=dev mix credo --version" @@ -1466,7 +1466,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-evals-report.lock.yml b/.github/workflows/daily-evals-report.lock.yml index b554f27e9de..f146d0bb2b4 100644 --- a/.github/workflows/daily-evals-report.lock.yml +++ b/.github/workflows/daily-evals-report.lock.yml @@ -370,7 +370,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -507,7 +507,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Restore shared agentic logs cache id: restore-agentic-logs-cache @@ -1579,7 +1579,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-experiment-report.lock.yml b/.github/workflows/daily-experiment-report.lock.yml index 57522035553..de2f0db72c0 100644 --- a/.github/workflows/daily-experiment-report.lock.yml +++ b/.github/workflows/daily-experiment-report.lock.yml @@ -355,7 +355,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1529,7 +1529,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-fact.lock.yml b/.github/workflows/daily-fact.lock.yml index 32e08c2133c..b2b804c1a0e 100644 --- a/.github/workflows/daily-fact.lock.yml +++ b/.github/workflows/daily-fact.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -537,7 +537,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1596,7 +1596,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml index 36716cc96fd..755897d202c 100644 --- a/.github/workflows/daily-file-diet.lock.yml +++ b/.github/workflows/daily-file-diet.lock.yml @@ -372,7 +372,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -479,7 +479,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1489,7 +1489,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml index 508cae797fd..fdc919c0bfd 100644 --- a/.github/workflows/daily-firewall-report.lock.yml +++ b/.github/workflows/daily-firewall-report.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -500,7 +500,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1541,7 +1541,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-formal-spec-verifier.lock.yml b/.github/workflows/daily-formal-spec-verifier.lock.yml index 576a99a7885..bebc5624e17 100644 --- a/.github/workflows/daily-formal-spec-verifier.lock.yml +++ b/.github/workflows/daily-formal-spec-verifier.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1494,7 +1494,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-function-namer.lock.yml b/.github/workflows/daily-function-namer.lock.yml index 4672f5d8467..8ab492a1da1 100644 --- a/.github/workflows/daily-function-namer.lock.yml +++ b/.github/workflows/daily-function-namer.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1436,7 +1436,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-geo-optimizer.lock.yml b/.github/workflows/daily-geo-optimizer.lock.yml index 00e23801acf..e8947ef1273 100644 --- a/.github/workflows/daily-geo-optimizer.lock.yml +++ b/.github/workflows/daily-geo-optimizer.lock.yml @@ -350,7 +350,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download geo-optimizer results uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1440,7 +1440,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-github-docs-seo-optimizer.lock.yml b/.github/workflows/daily-github-docs-seo-optimizer.lock.yml index 34e9954dc49..130acdb7405 100644 --- a/.github/workflows/daily-github-docs-seo-optimizer.lock.yml +++ b/.github/workflows/daily-github-docs-seo-optimizer.lock.yml @@ -303,7 +303,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -410,7 +410,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1277,7 +1277,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-go-test-parallelizer.lock.yml b/.github/workflows/daily-go-test-parallelizer.lock.yml index 39a9e4bc813..892d506cf6c 100644 --- a/.github/workflows/daily-go-test-parallelizer.lock.yml +++ b/.github/workflows/daily-go-test-parallelizer.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1463,7 +1463,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-go-test-stubs-aider.lock.yml b/.github/workflows/daily-go-test-stubs-aider.lock.yml index 12feb4b4cec..15884cdd170 100644 --- a/.github/workflows/daily-go-test-stubs-aider.lock.yml +++ b/.github/workflows/daily-go-test-stubs-aider.lock.yml @@ -344,7 +344,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -444,7 +444,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1362,7 +1362,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-graft-intelligence.lock.yml b/.github/workflows/daily-graft-intelligence.lock.yml index 4a3851b3ead..fb3a71e1d78 100644 --- a/.github/workflows/daily-graft-intelligence.lock.yml +++ b/.github/workflows/daily-graft-intelligence.lock.yml @@ -334,7 +334,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -443,7 +443,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: GRAFT_DIR: /tmp/gh-aw/graft @@ -1422,7 +1422,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-hippo-learn.lock.yml b/.github/workflows/daily-hippo-learn.lock.yml index 2301ab59424..6ce3451496b 100644 --- a/.github/workflows/daily-hippo-learn.lock.yml +++ b/.github/workflows/daily-hippo-learn.lock.yml @@ -351,7 +351,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1521,7 +1521,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml index ee2d2672e3a..cbff0684e7b 100644 --- a/.github/workflows/daily-issues-report.lock.yml +++ b/.github/workflows/daily-issues-report.lock.yml @@ -414,7 +414,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -547,7 +547,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1699,7 +1699,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml index a6ee65cea55..0d3941de52f 100644 --- a/.github/workflows/daily-malicious-code-scan.lock.yml +++ b/.github/workflows/daily-malicious-code-scan.lock.yml @@ -345,7 +345,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/daily-max-ai-credits-test.lock.yml b/.github/workflows/daily-max-ai-credits-test.lock.yml index c7be72727e3..d1544e48a4b 100644 --- a/.github/workflows/daily-max-ai-credits-test.lock.yml +++ b/.github/workflows/daily-max-ai-credits-test.lock.yml @@ -270,7 +270,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -372,7 +372,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1212,7 +1212,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml index f83091c8189..70bb647532b 100644 --- a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml +++ b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1532,7 +1532,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-model-inventory.lock.yml b/.github/workflows/daily-model-inventory.lock.yml index fdf942919c2..6ae83e22b81 100644 --- a/.github/workflows/daily-model-inventory.lock.yml +++ b/.github/workflows/daily-model-inventory.lock.yml @@ -343,7 +343,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -456,7 +456,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download all model artifacts uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1713,7 +1713,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-model-resolution.lock.yml b/.github/workflows/daily-model-resolution.lock.yml index 575ea6e5a89..d67f114cfc3 100644 --- a/.github/workflows/daily-model-resolution.lock.yml +++ b/.github/workflows/daily-model-resolution.lock.yml @@ -354,7 +354,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -490,7 +490,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1454,7 +1454,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml index fafd25ffa78..52f105dcb50 100644 --- a/.github/workflows/daily-multi-device-docs-tester.lock.yml +++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml @@ -362,7 +362,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1433,7 +1433,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml index 69314096270..505027b264a 100644 --- a/.github/workflows/daily-news.lock.yml +++ b/.github/workflows/daily-news.lock.yml @@ -415,7 +415,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -524,7 +524,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1623,7 +1623,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-observability-report.lock.yml b/.github/workflows/daily-observability-report.lock.yml index 5d876707602..05e230ac4f4 100644 --- a/.github/workflows/daily-observability-report.lock.yml +++ b/.github/workflows/daily-observability-report.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -497,7 +497,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1488,7 +1488,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml index f6eddd121b2..4c641b41dff 100644 --- a/.github/workflows/daily-performance-summary.lock.yml +++ b/.github/workflows/daily-performance-summary.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -479,7 +479,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1989,7 +1989,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-pr-review-cursor.lock.yml b/.github/workflows/daily-pr-review-cursor.lock.yml index ebdf412bbfa..e37dc58314c 100644 --- a/.github/workflows/daily-pr-review-cursor.lock.yml +++ b/.github/workflows/daily-pr-review-cursor.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -453,7 +453,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1385,7 +1385,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-regression-audit-kiro.lock.yml b/.github/workflows/daily-regression-audit-kiro.lock.yml index 74db8301c96..f0f35936567 100644 --- a/.github/workflows/daily-regression-audit-kiro.lock.yml +++ b/.github/workflows/daily-regression-audit-kiro.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -454,7 +454,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1386,7 +1386,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-regulatory.lock.yml b/.github/workflows/daily-regulatory.lock.yml index ea54aa8ce0a..78d3e744bb7 100644 --- a/.github/workflows/daily-regulatory.lock.yml +++ b/.github/workflows/daily-regulatory.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -460,7 +460,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1885,7 +1885,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-reliability-review.lock.yml b/.github/workflows/daily-reliability-review.lock.yml index 0fc347fcdcf..6093454428b 100644 --- a/.github/workflows/daily-reliability-review.lock.yml +++ b/.github/workflows/daily-reliability-review.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1446,7 +1446,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-rendering-scripts-verifier.lock.yml b/.github/workflows/daily-rendering-scripts-verifier.lock.yml index 12e655faaeb..a4146866774 100644 --- a/.github/workflows/daily-rendering-scripts-verifier.lock.yml +++ b/.github/workflows/daily-rendering-scripts-verifier.lock.yml @@ -376,7 +376,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -514,7 +514,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1656,7 +1656,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml index c939c2ab03a..e13a81f7d03 100644 --- a/.github/workflows/daily-repo-chronicle.lock.yml +++ b/.github/workflows/daily-repo-chronicle.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1465,7 +1465,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-safe-output-integrator.lock.yml b/.github/workflows/daily-safe-output-integrator.lock.yml index 76f631663b0..4f0a78d86c2 100644 --- a/.github/workflows/daily-safe-output-integrator.lock.yml +++ b/.github/workflows/daily-safe-output-integrator.lock.yml @@ -345,7 +345,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1430,7 +1430,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-safe-output-optimizer.lock.yml b/.github/workflows/daily-safe-output-optimizer.lock.yml index 28ac8175a2a..df3e8c7ee37 100644 --- a/.github/workflows/daily-safe-output-optimizer.lock.yml +++ b/.github/workflows/daily-safe-output-optimizer.lock.yml @@ -414,7 +414,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -552,7 +552,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1667,7 +1667,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-safe-outputs-conformance.lock.yml b/.github/workflows/daily-safe-outputs-conformance.lock.yml index 7862653b0ed..06e90c227b3 100644 --- a/.github/workflows/daily-safe-outputs-conformance.lock.yml +++ b/.github/workflows/daily-safe-outputs-conformance.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -457,7 +457,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1449,7 +1449,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-safeoutputs-git-simulator.lock.yml b/.github/workflows/daily-safeoutputs-git-simulator.lock.yml index 40c569f5f90..468cac4dc54 100644 --- a/.github/workflows/daily-safeoutputs-git-simulator.lock.yml +++ b/.github/workflows/daily-safeoutputs-git-simulator.lock.yml @@ -344,7 +344,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -454,7 +454,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1521,7 +1521,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-schema-audit-cursor.lock.yml b/.github/workflows/daily-schema-audit-cursor.lock.yml index 14af4de06c3..36034ec0382 100644 --- a/.github/workflows/daily-schema-audit-cursor.lock.yml +++ b/.github/workflows/daily-schema-audit-cursor.lock.yml @@ -347,7 +347,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -452,7 +452,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1384,7 +1384,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-secrets-analysis.lock.yml b/.github/workflows/daily-secrets-analysis.lock.yml index 7cbea3f7aa6..a9273272057 100644 --- a/.github/workflows/daily-secrets-analysis.lock.yml +++ b/.github/workflows/daily-secrets-analysis.lock.yml @@ -343,7 +343,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -450,7 +450,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1365,7 +1365,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-security-observability.lock.yml b/.github/workflows/daily-security-observability.lock.yml index 54aed9550c0..edf36092b3b 100644 --- a/.github/workflows/daily-security-observability.lock.yml +++ b/.github/workflows/daily-security-observability.lock.yml @@ -375,7 +375,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1605,7 +1605,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-security-red-team.lock.yml b/.github/workflows/daily-security-red-team.lock.yml index 441e474f5f5..870ec27fc1b 100644 --- a/.github/workflows/daily-security-red-team.lock.yml +++ b/.github/workflows/daily-security-red-team.lock.yml @@ -391,7 +391,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -487,7 +487,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1512,7 +1512,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-semgrep-scan.lock.yml b/.github/workflows/daily-semgrep-scan.lock.yml index 565c72dda47..6a2ff6314cc 100644 --- a/.github/workflows/daily-semgrep-scan.lock.yml +++ b/.github/workflows/daily-semgrep-scan.lock.yml @@ -380,7 +380,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -484,7 +484,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1402,7 +1402,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-spdd-spec-planner.lock.yml b/.github/workflows/daily-spdd-spec-planner.lock.yml index e2a17b195b3..567190442b5 100644 --- a/.github/workflows/daily-spdd-spec-planner.lock.yml +++ b/.github/workflows/daily-spdd-spec-planner.lock.yml @@ -351,7 +351,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1454,7 +1454,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-spec-coverage-kiro.lock.yml b/.github/workflows/daily-spec-coverage-kiro.lock.yml index d11d231aa98..005fdec322f 100644 --- a/.github/workflows/daily-spec-coverage-kiro.lock.yml +++ b/.github/workflows/daily-spec-coverage-kiro.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -453,7 +453,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1384,7 +1384,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-spending-forecast.lock.yml b/.github/workflows/daily-spending-forecast.lock.yml index 8798ab861db..dc4013f8cf1 100644 --- a/.github/workflows/daily-spending-forecast.lock.yml +++ b/.github/workflows/daily-spending-forecast.lock.yml @@ -337,7 +337,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1536,7 +1536,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-squid-image-scan.lock.yml b/.github/workflows/daily-squid-image-scan.lock.yml index 91dcc61ea3c..bc954d0f755 100644 --- a/.github/workflows/daily-squid-image-scan.lock.yml +++ b/.github/workflows/daily-squid-image-scan.lock.yml @@ -318,7 +318,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -422,7 +422,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Build gh-aw from source run: | @@ -1487,7 +1487,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-syntax-error-quality.lock.yml b/.github/workflows/daily-syntax-error-quality.lock.yml index af987fa378b..f2db67553a1 100644 --- a/.github/workflows/daily-syntax-error-quality.lock.yml +++ b/.github/workflows/daily-syntax-error-quality.lock.yml @@ -342,7 +342,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Find candidate workflows run: "mkdir -p /tmp/gh-aw/agent\nmkdir -p /tmp/gh-aw/agent/candidates\nfind .github/workflows -name '*.md' -type f ! -name 'daily-*.md' ! -name '*-test.md' \\\n | shuf -n 5 \\\n > /tmp/gh-aw/agent/candidates.txt\nwhile IFS= read -r workflow; do\n cp \"$workflow\" /tmp/gh-aw/agent/candidates/\ndone < /tmp/gh-aw/agent/candidates.txt\necho \"Pre-selected $(wc -l < /tmp/gh-aw/agent/candidates.txt) candidate workflows\"\n" @@ -1384,7 +1384,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-team-evolution-insights.lock.yml b/.github/workflows/daily-team-evolution-insights.lock.yml index d69a689c729..aeea464c841 100644 --- a/.github/workflows/daily-team-evolution-insights.lock.yml +++ b/.github/workflows/daily-team-evolution-insights.lock.yml @@ -350,7 +350,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1575,7 +1575,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml index 508e5eb99ae..4c17cbb4860 100644 --- a/.github/workflows/daily-team-status.lock.yml +++ b/.github/workflows/daily-team-status.lock.yml @@ -332,7 +332,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -436,7 +436,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1361,7 +1361,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-testify-uber-super-expert.lock.yml b/.github/workflows/daily-testify-uber-super-expert.lock.yml index b5b3a6ee208..f0cdfb92af0 100644 --- a/.github/workflows/daily-testify-uber-super-expert.lock.yml +++ b/.github/workflows/daily-testify-uber-super-expert.lock.yml @@ -374,7 +374,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -480,7 +480,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1503,7 +1503,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-token-consumption-report.lock.yml b/.github/workflows/daily-token-consumption-report.lock.yml index abd8975ee44..7821d22a797 100644 --- a/.github/workflows/daily-token-consumption-report.lock.yml +++ b/.github/workflows/daily-token-consumption-report.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -445,7 +445,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1627,7 +1627,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-vulnhunter-scan.lock.yml b/.github/workflows/daily-vulnhunter-scan.lock.yml index b151361bce5..574428971eb 100644 --- a/.github/workflows/daily-vulnhunter-scan.lock.yml +++ b/.github/workflows/daily-vulnhunter-scan.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -456,7 +456,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download VulnHunter bundle artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1424,7 +1424,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-windows-terminal-integration-builder.lock.yml b/.github/workflows/daily-windows-terminal-integration-builder.lock.yml index dccdf3f5248..f93f9182ccc 100644 --- a/.github/workflows/daily-windows-terminal-integration-builder.lock.yml +++ b/.github/workflows/daily-windows-terminal-integration-builder.lock.yml @@ -332,7 +332,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -436,7 +436,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1331,7 +1331,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml index 01f28835c75..01606130272 100644 --- a/.github/workflows/daily-workflow-updater.lock.yml +++ b/.github/workflows/daily-workflow-updater.lock.yml @@ -339,7 +339,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -445,7 +445,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1393,7 +1393,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-yamllint-fixer.lock.yml b/.github/workflows/daily-yamllint-fixer.lock.yml index 8fff6d762c2..03f59f4bab6 100644 --- a/.github/workflows/daily-yamllint-fixer.lock.yml +++ b/.github/workflows/daily-yamllint-fixer.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -464,7 +464,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download yamllint results artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1456,7 +1456,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dataflow-pr-discussion-dataset.lock.yml b/.github/workflows/dataflow-pr-discussion-dataset.lock.yml index 53505d52072..425b0519990 100644 --- a/.github/workflows/dataflow-pr-discussion-dataset.lock.yml +++ b/.github/workflows/dataflow-pr-discussion-dataset.lock.yml @@ -407,7 +407,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -538,7 +538,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1816,7 +1816,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dead-code-remover.lock.yml b/.github/workflows/dead-code-remover.lock.yml index 07d500e3463..ffbaaca5ebd 100644 --- a/.github/workflows/dead-code-remover.lock.yml +++ b/.github/workflows/dead-code-remover.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -478,7 +478,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1449,7 +1449,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml index 2b456876546..5f174c07159 100644 --- a/.github/workflows/deep-report.lock.yml +++ b/.github/workflows/deep-report.lock.yml @@ -425,7 +425,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -571,7 +571,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -2279,7 +2279,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/deepsec-security-scan.lock.yml b/.github/workflows/deepsec-security-scan.lock.yml index 6189c39097f..f08972fbd97 100644 --- a/.github/workflows/deepsec-security-scan.lock.yml +++ b/.github/workflows/deepsec-security-scan.lock.yml @@ -383,7 +383,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -481,7 +481,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Checkout repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -1459,7 +1459,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/delight.lock.yml b/.github/workflows/delight.lock.yml index 3504ec04d2a..d4a7243cafd 100644 --- a/.github/workflows/delight.lock.yml +++ b/.github/workflows/delight.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1493,7 +1493,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dependabot-burner.lock.yml b/.github/workflows/dependabot-burner.lock.yml index ce0aa3c42f5..27eed64dceb 100644 --- a/.github/workflows/dependabot-burner.lock.yml +++ b/.github/workflows/dependabot-burner.lock.yml @@ -421,7 +421,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -526,7 +526,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: BURN_OBJECTIVE: ${{ inputs.objective }} @@ -1573,7 +1573,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml index 853528c8c7b..fb76a1545d9 100644 --- a/.github/workflows/dependabot-go-checker.lock.yml +++ b/.github/workflows/dependabot-go-checker.lock.yml @@ -388,7 +388,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -496,7 +496,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1461,7 +1461,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/deployment-incident-monitor.lock.yml b/.github/workflows/deployment-incident-monitor.lock.yml index 453be34cd39..635f469eca4 100644 --- a/.github/workflows/deployment-incident-monitor.lock.yml +++ b/.github/workflows/deployment-incident-monitor.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -468,7 +468,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1386,7 +1386,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/design-decision-gate.lock.yml b/.github/workflows/design-decision-gate.lock.yml index 8d887db3acd..e1b7a171596 100644 --- a/.github/workflows/design-decision-gate.lock.yml +++ b/.github/workflows/design-decision-gate.lock.yml @@ -443,7 +443,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -556,7 +556,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: EXPR_GITHUB_EVENT_NAME: ${{ github.event_name }} @@ -1606,7 +1606,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/designer-drift-audit.lock.yml b/.github/workflows/designer-drift-audit.lock.yml index d6e616d03ad..1f40356d433 100644 --- a/.github/workflows/designer-drift-audit.lock.yml +++ b/.github/workflows/designer-drift-audit.lock.yml @@ -326,7 +326,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -429,7 +429,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Extract reference doc metadata run: "mkdir -p /tmp/gh-aw/data\n\n# Core reference docs the designer depends on\nREFS=(\n \".github/aw/syntax.md\"\n \".github/aw/safe-outputs.md\"\n \".github/aw/network.md\"\n \".github/aw/patterns.md\"\n \".github/aw/subagents.md\"\n \".github/aw/token-optimization.md\"\n \".github/aw/triggers.md\"\n \".github/aw/create-agentic-workflow.md\"\n)\n\n# Extract key sections from each reference doc:\n# - H2/H3 headings (structural outline)\n# - YAML frontmatter field names\n# - Table rows containing mapping keywords\nfor ref in \"${REFS[@]}\"; do\n if [ -f \"$ref\" ]; then\n basename=$(basename \"$ref\" .md)\n {\n echo \"=== $ref ===\"\n # Headings\n grep -n '^##' \"$ref\" | head -50\n echo \"---\"\n # Frontmatter keys (between --- delimiters)\n sed -n '/^---$/,/^---$/p' \"$ref\" | grep -E '^\\w+:' | head -30\n echo \"---\"\n # Table rows with config keywords\n grep -E '^\\|.*\\|' \"$ref\" | grep -ivE '^\\|[\\s-]+\\|' | head -80\n echo \"===\"\n } > \"/tmp/gh-aw/data/ref-${basename}.txt\"\n fi\ndone\n" @@ -1319,7 +1319,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/detection-analysis-report.lock.yml b/.github/workflows/detection-analysis-report.lock.yml index e6293998e91..3abdcdda2e8 100644 --- a/.github/workflows/detection-analysis-report.lock.yml +++ b/.github/workflows/detection-analysis-report.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -510,7 +510,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1614,7 +1614,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml index 1c28198d2da..53cc200ddf0 100644 --- a/.github/workflows/dev-hawk.lock.yml +++ b/.github/workflows/dev-hawk.lock.yml @@ -384,7 +384,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -520,7 +520,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1514,7 +1514,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml index d78ca5cb63d..aebcf943541 100644 --- a/.github/workflows/dev.lock.yml +++ b/.github/workflows/dev.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -514,7 +514,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1466,7 +1466,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml index 0a4fd808b6d..78b973dba78 100644 --- a/.github/workflows/developer-docs-consolidator.lock.yml +++ b/.github/workflows/developer-docs-consolidator.lock.yml @@ -378,7 +378,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -486,7 +486,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1648,7 +1648,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml index bd8546ed0de..2818b91dfec 100644 --- a/.github/workflows/dictation-prompt.lock.yml +++ b/.github/workflows/dictation-prompt.lock.yml @@ -340,7 +340,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -446,7 +446,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1388,7 +1388,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml index 1d2b7e1d69a..4a675d87300 100644 --- a/.github/workflows/docs-noob-tester.lock.yml +++ b/.github/workflows/docs-noob-tester.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -460,7 +460,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1423,7 +1423,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/draft-pr-cleanup.lock.yml b/.github/workflows/draft-pr-cleanup.lock.yml index be39cacb2f2..26971c99e2a 100644 --- a/.github/workflows/draft-pr-cleanup.lock.yml +++ b/.github/workflows/draft-pr-cleanup.lock.yml @@ -341,7 +341,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -446,7 +446,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1423,7 +1423,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml index 36baef8c889..f228e10f75f 100644 --- a/.github/workflows/duplicate-code-detector.lock.yml +++ b/.github/workflows/duplicate-code-detector.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1468,7 +1468,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/eslint-miner.lock.yml b/.github/workflows/eslint-miner.lock.yml index d7d7cea3429..135b80242f3 100644 --- a/.github/workflows/eslint-miner.lock.yml +++ b/.github/workflows/eslint-miner.lock.yml @@ -330,7 +330,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -443,7 +443,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1418,7 +1418,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/eslint-monster.lock.yml b/.github/workflows/eslint-monster.lock.yml index 514e390fdd9..fc28af490ad 100644 --- a/.github/workflows/eslint-monster.lock.yml +++ b/.github/workflows/eslint-monster.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -450,7 +450,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - id: eslint_scan name: Run ESLint factory pre-check @@ -1491,7 +1491,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/eslint-refiner.lock.yml b/.github/workflows/eslint-refiner.lock.yml index 14e0bfdbe8a..7f91d58bf2c 100644 --- a/.github/workflows/eslint-refiner.lock.yml +++ b/.github/workflows/eslint-refiner.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1519,7 +1519,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/evoskill-evolver.lock.yml b/.github/workflows/evoskill-evolver.lock.yml index 40a940e336f..1e41e75a549 100644 --- a/.github/workflows/evoskill-evolver.lock.yml +++ b/.github/workflows/evoskill-evolver.lock.yml @@ -331,7 +331,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -438,7 +438,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1433,7 +1433,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/example-failure-category-filter.lock.yml b/.github/workflows/example-failure-category-filter.lock.yml index 48ae017ef99..6bca92f4801 100644 --- a/.github/workflows/example-failure-category-filter.lock.yml +++ b/.github/workflows/example-failure-category-filter.lock.yml @@ -325,7 +325,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -423,7 +423,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1307,7 +1307,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml index 98329dd3d23..7e07c11c835 100644 --- a/.github/workflows/example-permissions-warning.lock.yml +++ b/.github/workflows/example-permissions-warning.lock.yml @@ -346,7 +346,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml index 7710ff08b2e..6d6eec59f86 100644 --- a/.github/workflows/example-workflow-analyzer.lock.yml +++ b/.github/workflows/example-workflow-analyzer.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -492,7 +492,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1479,7 +1479,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml index 4c46c242d19..6c5ca03285f 100644 --- a/.github/workflows/firewall-escape.lock.yml +++ b/.github/workflows/firewall-escape.lock.yml @@ -388,7 +388,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -495,7 +495,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1477,7 +1477,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml index 5001ad09b68..6146f522219 100644 --- a/.github/workflows/firewall.lock.yml +++ b/.github/workflows/firewall.lock.yml @@ -343,7 +343,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -445,7 +445,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/functional-pragmatist.lock.yml b/.github/workflows/functional-pragmatist.lock.yml index f97cd34d4ed..68ec24eb02a 100644 --- a/.github/workflows/functional-pragmatist.lock.yml +++ b/.github/workflows/functional-pragmatist.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -454,7 +454,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1397,7 +1397,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml index db7f61f1c40..33295b6c66b 100644 --- a/.github/workflows/github-mcp-structural-analysis.lock.yml +++ b/.github/workflows/github-mcp-structural-analysis.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -482,7 +482,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1778,7 +1778,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml index 0bd14fcd117..e2b2913596d 100644 --- a/.github/workflows/github-mcp-tools-report.lock.yml +++ b/.github/workflows/github-mcp-tools-report.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -467,7 +467,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1507,7 +1507,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/github-remote-mcp-auth-test.lock.yml b/.github/workflows/github-remote-mcp-auth-test.lock.yml index a933a2a4df0..224a3c273cd 100644 --- a/.github/workflows/github-remote-mcp-auth-test.lock.yml +++ b/.github/workflows/github-remote-mcp-auth-test.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -458,7 +458,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1359,7 +1359,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml index 91d33bc8f21..60bb65c2c45 100644 --- a/.github/workflows/glossary-maintainer.lock.yml +++ b/.github/workflows/glossary-maintainer.lock.yml @@ -380,7 +380,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -499,7 +499,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1555,7 +1555,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml index f10e67f3c9f..04c70afcaa9 100644 --- a/.github/workflows/go-fan.lock.yml +++ b/.github/workflows/go-fan.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1539,7 +1539,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml index 5f5a8066d7d..fb0f1da19b3 100644 --- a/.github/workflows/go-logger.lock.yml +++ b/.github/workflows/go-logger.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -475,7 +475,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1543,7 +1543,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml index 42a59a32c86..d89e701f937 100644 --- a/.github/workflows/go-pattern-detector.lock.yml +++ b/.github/workflows/go-pattern-detector.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1475,7 +1475,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/gpclean.lock.yml b/.github/workflows/gpclean.lock.yml index bb5a7f7fd5f..2d5d9830f62 100644 --- a/.github/workflows/gpclean.lock.yml +++ b/.github/workflows/gpclean.lock.yml @@ -398,7 +398,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -505,7 +505,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1462,7 +1462,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml index 4840afca2ff..a52bd6c0751 100644 --- a/.github/workflows/grumpy-reviewer.lock.yml +++ b/.github/workflows/grumpy-reviewer.lock.yml @@ -415,7 +415,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1560,7 +1560,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/hippo-embed.lock.yml b/.github/workflows/hippo-embed.lock.yml index 6c1382064af..ed69c0ae9b4 100644 --- a/.github/workflows/hippo-embed.lock.yml +++ b/.github/workflows/hippo-embed.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml index 778377e5180..6df41cba227 100644 --- a/.github/workflows/hourly-ci-cleaner.lock.yml +++ b/.github/workflows/hourly-ci-cleaner.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -492,7 +492,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Install Make run: | @@ -1550,7 +1550,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/impeccable-skills-reviewer.lock.yml b/.github/workflows/impeccable-skills-reviewer.lock.yml index 125d98c340f..a7294823973 100644 --- a/.github/workflows/impeccable-skills-reviewer.lock.yml +++ b/.github/workflows/impeccable-skills-reviewer.lock.yml @@ -389,7 +389,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -491,7 +491,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Cache (pr-prefetch-${{ github.event.pull_request.head.sha }}) @@ -1541,7 +1541,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml index 07d2a8bc7f5..94e7390e79c 100644 --- a/.github/workflows/instructions-janitor.lock.yml +++ b/.github/workflows/instructions-janitor.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1506,7 +1506,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml index 1addde89157..f29bbf6dee7 100644 --- a/.github/workflows/issue-arborist.lock.yml +++ b/.github/workflows/issue-arborist.lock.yml @@ -393,7 +393,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Fetch issues run: |- @@ -1544,7 +1544,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml index 67234269b35..53fc26ea016 100644 --- a/.github/workflows/issue-monster.lock.yml +++ b/.github/workflows/issue-monster.lock.yml @@ -826,7 +826,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -919,7 +919,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1843,7 +1843,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index 14de2741fb6..3e6642af293 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1561,7 +1561,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/jsweep.lock.yml b/.github/workflows/jsweep.lock.yml index 9fc43e6c75a..f4c50d84b48 100644 --- a/.github/workflows/jsweep.lock.yml +++ b/.github/workflows/jsweep.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -468,7 +468,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1452,7 +1452,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index 1f561806add..c9bbdc2c71a 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -350,7 +350,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Save layout spec data to cache @@ -1439,7 +1439,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/lint-monster.lock.yml b/.github/workflows/lint-monster.lock.yml index da1a62c0429..ed102c23075 100644 --- a/.github/workflows/lint-monster.lock.yml +++ b/.github/workflows/lint-monster.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -444,7 +444,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - id: lint_scan name: Run custom lint pre-check @@ -1473,7 +1473,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/linter-miner.lock.yml b/.github/workflows/linter-miner.lock.yml index 5c9da591de1..b53e28aafa9 100644 --- a/.github/workflows/linter-miner.lock.yml +++ b/.github/workflows/linter-miner.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -468,7 +468,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1482,7 +1482,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml index 6e09813b236..71a8af82c81 100644 --- a/.github/workflows/lockfile-stats.lock.yml +++ b/.github/workflows/lockfile-stats.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1439,7 +1439,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/mattpocock-skills-reviewer.lock.yml b/.github/workflows/mattpocock-skills-reviewer.lock.yml index a83c4dd1d6b..1a160fb8596 100644 --- a/.github/workflows/mattpocock-skills-reviewer.lock.yml +++ b/.github/workflows/mattpocock-skills-reviewer.lock.yml @@ -508,7 +508,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -610,7 +610,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Cache (pr-prefetch-${{ github.event.pull_request.head.sha || github.event.issue.number }}) @@ -1684,7 +1684,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml index 587c14311be..c9ca2662c54 100644 --- a/.github/workflows/mcp-inspector.lock.yml +++ b/.github/workflows/mcp-inspector.lock.yml @@ -393,7 +393,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -536,7 +536,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1747,7 +1747,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml index b2513ba83b4..6bbbf93e733 100644 --- a/.github/workflows/mergefest.lock.yml +++ b/.github/workflows/mergefest.lock.yml @@ -404,7 +404,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -506,7 +506,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials run: "git config user.name \"github-actions[bot]\"\ngit config user.email \"github-actions[bot]@users.noreply.github.com\"\n\n# Create .gitignore to exclude workflow YAML files\ncat > /tmp/gh-aw/agent/merge-gitignore << 'EOF'\n# Exclude all .yml files in .github/workflows/\n.github/workflows/*.yml\nEOF" @@ -1465,7 +1465,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/metrics-collector.lock.yml b/.github/workflows/metrics-collector.lock.yml index cc7f57bb098..922295a285b 100644 --- a/.github/workflows/metrics-collector.lock.yml +++ b/.github/workflows/metrics-collector.lock.yml @@ -365,7 +365,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1488,7 +1488,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/necromancer.lock.yml b/.github/workflows/necromancer.lock.yml index eba4506ced7..2b3f895dcdc 100644 --- a/.github/workflows/necromancer.lock.yml +++ b/.github/workflows/necromancer.lock.yml @@ -429,7 +429,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -531,7 +531,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1515,7 +1515,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml index 16c450016e3..1035338abbf 100644 --- a/.github/workflows/notion-issue-summary.lock.yml +++ b/.github/workflows/notion-issue-summary.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/objective-impact-report.lock.yml b/.github/workflows/objective-impact-report.lock.yml index c2691e4bf2c..8dbee702849 100644 --- a/.github/workflows/objective-impact-report.lock.yml +++ b/.github/workflows/objective-impact-report.lock.yml @@ -331,7 +331,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -432,7 +432,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Save objective impact report dataset cache @@ -1413,7 +1413,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml index d6595900819..45b75e71d91 100644 --- a/.github/workflows/org-health-report.lock.yml +++ b/.github/workflows/org-health-report.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -476,7 +476,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1491,7 +1491,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/outcome-collector.lock.yml b/.github/workflows/outcome-collector.lock.yml index fd60e8688aa..8bfe5f1da4f 100644 --- a/.github/workflows/outcome-collector.lock.yml +++ b/.github/workflows/outcome-collector.lock.yml @@ -351,7 +351,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -460,7 +460,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1418,7 +1418,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml index c7bb186399d..d296902f82a 100644 --- a/.github/workflows/pdf-summary.lock.yml +++ b/.github/workflows/pdf-summary.lock.yml @@ -433,7 +433,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -538,7 +538,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1540,7 +1540,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml index 6e182710eb5..62db2711377 100644 --- a/.github/workflows/plan.lock.yml +++ b/.github/workflows/plan.lock.yml @@ -452,7 +452,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -555,7 +555,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1553,7 +1553,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml index eb171d5cc01..5b819fe9497 100644 --- a/.github/workflows/poem-bot.lock.yml +++ b/.github/workflows/poem-bot.lock.yml @@ -425,7 +425,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1789,7 +1789,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ponytail-reviewer.lock.yml b/.github/workflows/ponytail-reviewer.lock.yml index 5dc374df0ef..b57e738a923 100644 --- a/.github/workflows/ponytail-reviewer.lock.yml +++ b/.github/workflows/ponytail-reviewer.lock.yml @@ -443,7 +443,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -545,7 +545,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Cache (pr-prefetch-${{ github.event.pull_request.head.sha || github.event.issue.number }}) @@ -1574,7 +1574,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml index c1e4f18d479..6a8b73f8bc1 100644 --- a/.github/workflows/portfolio-analyst.lock.yml +++ b/.github/workflows/portfolio-analyst.lock.yml @@ -354,7 +354,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1593,7 +1593,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-code-quality-reviewer.lock.yml b/.github/workflows/pr-code-quality-reviewer.lock.yml index 258d57eff89..fad3f67b33b 100644 --- a/.github/workflows/pr-code-quality-reviewer.lock.yml +++ b/.github/workflows/pr-code-quality-reviewer.lock.yml @@ -420,7 +420,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -1542,7 +1542,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-description-caveman.lock.yml b/.github/workflows/pr-description-caveman.lock.yml index a1b84cf3d89..6ac28ef9a29 100644 --- a/.github/workflows/pr-description-caveman.lock.yml +++ b/.github/workflows/pr-description-caveman.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -458,7 +458,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: BASE_SHA: ${{ github.event.pull_request.base.sha }} @@ -1381,7 +1381,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml index 4b80121ad43..cd06c253787 100644 --- a/.github/workflows/pr-nitpick-reviewer.lock.yml +++ b/.github/workflows/pr-nitpick-reviewer.lock.yml @@ -414,7 +414,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1566,7 +1566,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-sous-chef.lock.yml b/.github/workflows/pr-sous-chef.lock.yml index 726e60277c7..a2f01e19b0c 100644 --- a/.github/workflows/pr-sous-chef.lock.yml +++ b/.github/workflows/pr-sous-chef.lock.yml @@ -400,7 +400,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -526,7 +526,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Fetch open non-draft PR queue id: fetch-prs @@ -1860,7 +1860,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-triage-agent.lock.yml b/.github/workflows/pr-triage-agent.lock.yml index d9edebc7fd6..ebfc7d9af36 100644 --- a/.github/workflows/pr-triage-agent.lock.yml +++ b/.github/workflows/pr-triage-agent.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -473,7 +473,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1873,7 +1873,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml index efa79f0f93b..26e6f30fc1a 100644 --- a/.github/workflows/prompt-clustering-analysis.lock.yml +++ b/.github/workflows/prompt-clustering-analysis.lock.yml @@ -377,7 +377,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1623,7 +1623,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/purelock.lock.yml b/.github/workflows/purelock.lock.yml index f26ad3e0aa0..3fd728a3dd3 100644 --- a/.github/workflows/purelock.lock.yml +++ b/.github/workflows/purelock.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -478,7 +478,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1521,7 +1521,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml index 248352f6dc8..784552670c9 100644 --- a/.github/workflows/python-data-charts.lock.yml +++ b/.github/workflows/python-data-charts.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1561,7 +1561,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml index 6663378d82f..77500bb407c 100644 --- a/.github/workflows/q.lock.yml +++ b/.github/workflows/q.lock.yml @@ -440,7 +440,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -574,7 +574,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1649,7 +1649,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/refactoring-cadence.lock.yml b/.github/workflows/refactoring-cadence.lock.yml index 36880438a72..df91879c6f0 100644 --- a/.github/workflows/refactoring-cadence.lock.yml +++ b/.github/workflows/refactoring-cadence.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1409,7 +1409,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/refiner.lock.yml b/.github/workflows/refiner.lock.yml index 13616587900..3f0acf292cb 100644 --- a/.github/workflows/refiner.lock.yml +++ b/.github/workflows/refiner.lock.yml @@ -395,7 +395,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -497,7 +497,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1601,7 +1601,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index 4d24df9ca72..183af15191d 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -474,7 +474,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/repo-audit-analyzer.lock.yml b/.github/workflows/repo-audit-analyzer.lock.yml index a496d2f47f5..ee687b126c4 100644 --- a/.github/workflows/repo-audit-analyzer.lock.yml +++ b/.github/workflows/repo-audit-analyzer.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory (repo-audits) @@ -1414,7 +1414,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml index f1173b5b347..6dc6a5b47ef 100644 --- a/.github/workflows/repo-tree-map.lock.yml +++ b/.github/workflows/repo-tree-map.lock.yml @@ -345,7 +345,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -450,7 +450,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1345,7 +1345,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml index d8782951ac9..2138bab96c4 100644 --- a/.github/workflows/repository-quality-improver.lock.yml +++ b/.github/workflows/repository-quality-improver.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory (focus-areas) @@ -1405,7 +1405,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml index 41ea46875b6..369308a5b72 100644 --- a/.github/workflows/research.lock.yml +++ b/.github/workflows/research.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1387,7 +1387,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ruflo-backed-task.lock.yml b/.github/workflows/ruflo-backed-task.lock.yml index ca5fc2093ae..6212fb0c4ca 100644 --- a/.github/workflows/ruflo-backed-task.lock.yml +++ b/.github/workflows/ruflo-backed-task.lock.yml @@ -397,7 +397,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -503,7 +503,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1600,7 +1600,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml index 6aa4218533a..9b36dcd1457 100644 --- a/.github/workflows/safe-output-health.lock.yml +++ b/.github/workflows/safe-output-health.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1565,7 +1565,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml index a4ba7194f6a..915a3a8b60a 100644 --- a/.github/workflows/schema-consistency-checker.lock.yml +++ b/.github/workflows/schema-consistency-checker.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1339,7 +1339,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/schema-feature-coverage.lock.yml b/.github/workflows/schema-feature-coverage.lock.yml index fe33ae2d7df..508e7d088b8 100644 --- a/.github/workflows/schema-feature-coverage.lock.yml +++ b/.github/workflows/schema-feature-coverage.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1417,7 +1417,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml index 8466b8762a9..bd17ef4fd6f 100644 --- a/.github/workflows/scout.lock.yml +++ b/.github/workflows/scout.lock.yml @@ -450,7 +450,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -554,7 +554,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1676,7 +1676,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/security-compliance.lock.yml b/.github/workflows/security-compliance.lock.yml index 5398fe5fb1c..11ef77e89cf 100644 --- a/.github/workflows/security-compliance.lock.yml +++ b/.github/workflows/security-compliance.lock.yml @@ -381,7 +381,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -482,7 +482,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1422,7 +1422,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/security-review.lock.yml b/.github/workflows/security-review.lock.yml index 1f8fe34f311..57260aa2f3e 100644 --- a/.github/workflows/security-review.lock.yml +++ b/.github/workflows/security-review.lock.yml @@ -409,7 +409,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -545,7 +545,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1829,7 +1829,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml index 8d0e9ecc3eb..295fd1a3df2 100644 --- a/.github/workflows/semantic-function-refactor.lock.yml +++ b/.github/workflows/semantic-function-refactor.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Precompute semantic refactor slice run: "set -euo pipefail\nmkdir -p /tmp/gh-aw/agent/semantic-function-refactor\n\nmapfile -t packages < <(find pkg -mindepth 1 -maxdepth 1 -type d | sort)\nif [ \"${#packages[@]}\" -eq 0 ]; then\n : > /tmp/gh-aw/agent/semantic-function-refactor/targets.txt\n : > /tmp/gh-aw/agent/semantic-function-refactor/go-files.txt\n exit 0\nfi\n\nbatch_size=2\nday_of_year=\"$(date -u +%j)\"\nday_of_year=\"${day_of_year#0}\"\nday_of_year=\"${day_of_year#0}\"\n: \"${day_of_year:=1}\"\nstart_index=$(( ( (day_of_year - 1) * batch_size ) % ${#packages[@]} ))\n: > /tmp/gh-aw/agent/semantic-function-refactor/targets.txt\n: > /tmp/gh-aw/agent/semantic-function-refactor/go-files.txt\n\nfor offset in 0 1; do\n idx=$(( (start_index + offset) % ${#packages[@]} ))\n pkg_dir=\"${packages[$idx]}\"\n printf '%s\\n' \"$pkg_dir\" >> /tmp/gh-aw/agent/semantic-function-refactor/targets.txt\n find \"$pkg_dir\" -name \"*.go\" ! -name \"*_test.go\" -type f | sort >> /tmp/gh-aw/agent/semantic-function-refactor/go-files.txt\ndone" @@ -1521,7 +1521,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/sergo.lock.yml b/.github/workflows/sergo.lock.yml index c9cd192fd68..83d191109cf 100644 --- a/.github/workflows/sergo.lock.yml +++ b/.github/workflows/sergo.lock.yml @@ -372,7 +372,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -478,7 +478,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1557,7 +1557,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/sighthound-security-scan.lock.yml b/.github/workflows/sighthound-security-scan.lock.yml index e02811adf78..38910161220 100644 --- a/.github/workflows/sighthound-security-scan.lock.yml +++ b/.github/workflows/sighthound-security-scan.lock.yml @@ -331,7 +331,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -437,7 +437,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download Sighthound artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1327,7 +1327,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/skillet.lock.yml b/.github/workflows/skillet.lock.yml index 38ec8e58964..55239b271ed 100644 --- a/.github/workflows/skillet.lock.yml +++ b/.github/workflows/skillet.lock.yml @@ -424,7 +424,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -527,7 +527,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1536,7 +1536,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index cc00c4755a7..f230002806a 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -379,7 +379,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -494,7 +494,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1540,7 +1540,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-all-merged.lock.yml b/.github/workflows/smoke-agent-all-merged.lock.yml index 367f1471b05..b34b8024833 100644 --- a/.github/workflows/smoke-agent-all-merged.lock.yml +++ b/.github/workflows/smoke-agent-all-merged.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -514,7 +514,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1502,7 +1502,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-all-none.lock.yml b/.github/workflows/smoke-agent-all-none.lock.yml index b98a9209fd2..6e4ab838e97 100644 --- a/.github/workflows/smoke-agent-all-none.lock.yml +++ b/.github/workflows/smoke-agent-all-none.lock.yml @@ -410,7 +410,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1489,7 +1489,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-public-approved.lock.yml b/.github/workflows/smoke-agent-public-approved.lock.yml index d196ed8c1fd..10eafc82db8 100644 --- a/.github/workflows/smoke-agent-public-approved.lock.yml +++ b/.github/workflows/smoke-agent-public-approved.lock.yml @@ -415,7 +415,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -517,7 +517,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1546,7 +1546,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-public-none.lock.yml b/.github/workflows/smoke-agent-public-none.lock.yml index 32e3271d792..04c2f6ab0aa 100644 --- a/.github/workflows/smoke-agent-public-none.lock.yml +++ b/.github/workflows/smoke-agent-public-none.lock.yml @@ -410,7 +410,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1489,7 +1489,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-scoped-approved.lock.yml b/.github/workflows/smoke-agent-scoped-approved.lock.yml index e3255715bd8..840ea7bbd36 100644 --- a/.github/workflows/smoke-agent-scoped-approved.lock.yml +++ b/.github/workflows/smoke-agent-scoped-approved.lock.yml @@ -414,7 +414,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1501,7 +1501,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-aider.lock.yml b/.github/workflows/smoke-aider.lock.yml index 19d7de33a99..33c483517c5 100644 --- a/.github/workflows/smoke-aider.lock.yml +++ b/.github/workflows/smoke-aider.lock.yml @@ -398,7 +398,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -493,7 +493,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1446,7 +1446,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-call-workflow.lock.yml b/.github/workflows/smoke-call-workflow.lock.yml index c70fa1fd782..04ba6ef4b9d 100644 --- a/.github/workflows/smoke-call-workflow.lock.yml +++ b/.github/workflows/smoke-call-workflow.lock.yml @@ -410,7 +410,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1470,7 +1470,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-checkout-pr-dispatch.lock.yml b/.github/workflows/smoke-checkout-pr-dispatch.lock.yml index 996502d36ec..3deeb0c8e8c 100644 --- a/.github/workflows/smoke-checkout-pr-dispatch.lock.yml +++ b/.github/workflows/smoke-checkout-pr-dispatch.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1467,7 +1467,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-ci.lock.yml b/.github/workflows/smoke-ci.lock.yml index 84cf02b1716..a60a36b9c48 100644 --- a/.github/workflows/smoke-ci.lock.yml +++ b/.github/workflows/smoke-ci.lock.yml @@ -403,7 +403,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -507,7 +507,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Write comment-memory configuration run: | diff --git a/.github/workflows/smoke-claude-on-copilot.lock.yml b/.github/workflows/smoke-claude-on-copilot.lock.yml index 3adba9f8570..c8e022330a2 100644 --- a/.github/workflows/smoke-claude-on-copilot.lock.yml +++ b/.github/workflows/smoke-claude-on-copilot.lock.yml @@ -390,7 +390,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -489,7 +489,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1441,7 +1441,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index d96b42849fe..da3ee7f699b 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -444,7 +444,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -598,7 +598,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -2298,7 +2298,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml index 787d99498e1..924f893c15e 100644 --- a/.github/workflows/smoke-codex.lock.yml +++ b/.github/workflows/smoke-codex.lock.yml @@ -450,7 +450,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -563,7 +563,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -1939,7 +1939,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-aoai-apikey.lock.yml b/.github/workflows/smoke-copilot-aoai-apikey.lock.yml index 931a3bae3f3..1aaad91d21f 100644 --- a/.github/workflows/smoke-copilot-aoai-apikey.lock.yml +++ b/.github/workflows/smoke-copilot-aoai-apikey.lock.yml @@ -498,7 +498,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -642,7 +642,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -2704,7 +2704,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-aoai-entra.lock.yml b/.github/workflows/smoke-copilot-aoai-entra.lock.yml index 176390557d0..e01c686a7a6 100644 --- a/.github/workflows/smoke-copilot-aoai-entra.lock.yml +++ b/.github/workflows/smoke-copilot-aoai-entra.lock.yml @@ -503,7 +503,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -653,7 +653,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -2725,7 +2725,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-arm.lock.yml b/.github/workflows/smoke-copilot-arm.lock.yml index 089e3f8c98d..bf622c7e13e 100644 --- a/.github/workflows/smoke-copilot-arm.lock.yml +++ b/.github/workflows/smoke-copilot-arm.lock.yml @@ -442,7 +442,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -586,7 +586,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -2449,7 +2449,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-auto.lock.yml b/.github/workflows/smoke-copilot-auto.lock.yml index c548e85478d..e39d4f6a7cc 100644 --- a/.github/workflows/smoke-copilot-auto.lock.yml +++ b/.github/workflows/smoke-copilot-auto.lock.yml @@ -381,7 +381,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -481,7 +481,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1388,7 +1388,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-mai.lock.yml b/.github/workflows/smoke-copilot-mai.lock.yml index c9f1834bce5..381528bd8fa 100644 --- a/.github/workflows/smoke-copilot-mai.lock.yml +++ b/.github/workflows/smoke-copilot-mai.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1460,7 +1460,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-sdk.lock.yml b/.github/workflows/smoke-copilot-sdk.lock.yml index 0d7a742c3a1..fab39429563 100644 --- a/.github/workflows/smoke-copilot-sdk.lock.yml +++ b/.github/workflows/smoke-copilot-sdk.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -509,7 +509,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1420,7 +1420,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-small.lock.yml b/.github/workflows/smoke-copilot-small.lock.yml index d56b13a0e3e..c4e3e92a143 100644 --- a/.github/workflows/smoke-copilot-small.lock.yml +++ b/.github/workflows/smoke-copilot-small.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -509,7 +509,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1414,7 +1414,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-sub-agents.lock.yml b/.github/workflows/smoke-copilot-sub-agents.lock.yml index 79f9af69116..c11ce6a8ce0 100644 --- a/.github/workflows/smoke-copilot-sub-agents.lock.yml +++ b/.github/workflows/smoke-copilot-sub-agents.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1372,7 +1372,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml index 8334a8340a7..c054c7222bb 100644 --- a/.github/workflows/smoke-copilot.lock.yml +++ b/.github/workflows/smoke-copilot.lock.yml @@ -504,7 +504,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -653,7 +653,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -2720,7 +2720,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-create-cross-repo-pr.lock.yml b/.github/workflows/smoke-create-cross-repo-pr.lock.yml index bd0a3bcc5a8..72a68bd2be2 100644 --- a/.github/workflows/smoke-create-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-create-cross-repo-pr.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -534,7 +534,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1563,7 +1563,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-crush.lock.yml b/.github/workflows/smoke-crush.lock.yml index 5a7aa096883..acfd1ab4067 100644 --- a/.github/workflows/smoke-crush.lock.yml +++ b/.github/workflows/smoke-crush.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1818,7 +1818,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-cursor.lock.yml b/.github/workflows/smoke-cursor.lock.yml index db10f92b342..df7d3d309f2 100644 --- a/.github/workflows/smoke-cursor.lock.yml +++ b/.github/workflows/smoke-cursor.lock.yml @@ -426,7 +426,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1697,7 +1697,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-deepseek-harness.lock.yml b/.github/workflows/smoke-deepseek-harness.lock.yml index 399fed4db38..1b03938f2f6 100644 --- a/.github/workflows/smoke-deepseek-harness.lock.yml +++ b/.github/workflows/smoke-deepseek-harness.lock.yml @@ -419,7 +419,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1610,7 +1610,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-gemini.lock.yml b/.github/workflows/smoke-gemini.lock.yml index 15bc359fa8c..1a87e0692cb 100644 --- a/.github/workflows/smoke-gemini.lock.yml +++ b/.github/workflows/smoke-gemini.lock.yml @@ -469,7 +469,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -564,7 +564,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1632,7 +1632,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-github-claude.lock.yml b/.github/workflows/smoke-github-claude.lock.yml index 515a1180b01..f9d9fe862e7 100644 --- a/.github/workflows/smoke-github-claude.lock.yml +++ b/.github/workflows/smoke-github-claude.lock.yml @@ -390,7 +390,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -489,7 +489,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1441,7 +1441,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-goose.lock.yml b/.github/workflows/smoke-goose.lock.yml index 0b07274b469..cc0a661f3e3 100644 --- a/.github/workflows/smoke-goose.lock.yml +++ b/.github/workflows/smoke-goose.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1790,7 +1790,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-kiro.lock.yml b/.github/workflows/smoke-kiro.lock.yml index 54dd10e6b10..8abcba5b1ae 100644 --- a/.github/workflows/smoke-kiro.lock.yml +++ b/.github/workflows/smoke-kiro.lock.yml @@ -426,7 +426,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1608,7 +1608,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-multi-pr.lock.yml b/.github/workflows/smoke-multi-pr.lock.yml index e8a62b85a0c..8b6c1fbdbbd 100644 --- a/.github/workflows/smoke-multi-pr.lock.yml +++ b/.github/workflows/smoke-multi-pr.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1529,7 +1529,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-opencode.lock.yml b/.github/workflows/smoke-opencode.lock.yml index 7c414eb234f..fa8aed89899 100644 --- a/.github/workflows/smoke-opencode.lock.yml +++ b/.github/workflows/smoke-opencode.lock.yml @@ -426,7 +426,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -518,7 +518,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1644,7 +1644,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-otel-backends.lock.yml b/.github/workflows/smoke-otel-backends.lock.yml index b91d022f779..a843678f328 100644 --- a/.github/workflows/smoke-otel-backends.lock.yml +++ b/.github/workflows/smoke-otel-backends.lock.yml @@ -446,7 +446,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -553,7 +553,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1597,7 +1597,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-pi.lock.yml b/.github/workflows/smoke-pi.lock.yml index 2013ba933b5..dc0ebda026d 100644 --- a/.github/workflows/smoke-pi.lock.yml +++ b/.github/workflows/smoke-pi.lock.yml @@ -430,7 +430,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -529,7 +529,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1501,7 +1501,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-project.lock.yml b/.github/workflows/smoke-project.lock.yml index 17c39926802..90692900554 100644 --- a/.github/workflows/smoke-project.lock.yml +++ b/.github/workflows/smoke-project.lock.yml @@ -454,7 +454,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -557,7 +557,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1813,7 +1813,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-pydantic.lock.yml b/.github/workflows/smoke-pydantic.lock.yml index 493ece4edaa..3aa53985ce9 100644 --- a/.github/workflows/smoke-pydantic.lock.yml +++ b/.github/workflows/smoke-pydantic.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -493,7 +493,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1708,7 +1708,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-service-ports.lock.yml b/.github/workflows/smoke-service-ports.lock.yml index 2255db62dc8..a2a735a1b83 100644 --- a/.github/workflows/smoke-service-ports.lock.yml +++ b/.github/workflows/smoke-service-ports.lock.yml @@ -403,7 +403,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1504,7 +1504,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-temporary-id.lock.yml b/.github/workflows/smoke-temporary-id.lock.yml index 52e418971af..e2bc2469af7 100644 --- a/.github/workflows/smoke-temporary-id.lock.yml +++ b/.github/workflows/smoke-temporary-id.lock.yml @@ -452,7 +452,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -554,7 +554,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1619,7 +1619,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-test-tools.lock.yml b/.github/workflows/smoke-test-tools.lock.yml index 0c8fd308e73..adab30a620e 100644 --- a/.github/workflows/smoke-test-tools.lock.yml +++ b/.github/workflows/smoke-test-tools.lock.yml @@ -416,7 +416,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -543,7 +543,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1539,7 +1539,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-update-cross-repo-pr.lock.yml b/.github/workflows/smoke-update-cross-repo-pr.lock.yml index 3e3a51ba4da..1f476b54a3d 100644 --- a/.github/workflows/smoke-update-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-update-cross-repo-pr.lock.yml @@ -419,7 +419,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -550,7 +550,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1580,7 +1580,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml index 2621a787227..8f1bf8f8710 100644 --- a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml +++ b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml @@ -427,7 +427,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: ${{ steps.artifact-prefix.outputs.prefix }}activation + name: ${{ steps.artifact-prefix.outputs.prefix }}activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -531,7 +531,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: ${{ needs.activation.outputs.artifact_prefix }}activation + name: ${{ needs.activation.outputs.artifact_prefix }}activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1439,7 +1439,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: ${{ needs.activation.outputs.artifact_prefix }}activation + name: ${{ needs.activation.outputs.artifact_prefix }}activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-workflow-call.lock.yml b/.github/workflows/smoke-workflow-call.lock.yml index d9ca044048b..87cc0c8b277 100644 --- a/.github/workflows/smoke-workflow-call.lock.yml +++ b/.github/workflows/smoke-workflow-call.lock.yml @@ -432,7 +432,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: ${{ steps.artifact-prefix.outputs.prefix }}activation + name: ${{ steps.artifact-prefix.outputs.prefix }}activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -535,7 +535,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: ${{ needs.activation.outputs.artifact_prefix }}activation + name: ${{ needs.activation.outputs.artifact_prefix }}activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1463,7 +1463,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: ${{ needs.activation.outputs.artifact_prefix }}activation + name: ${{ needs.activation.outputs.artifact_prefix }}activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/spec-enforcer.lock.yml b/.github/workflows/spec-enforcer.lock.yml index 289f16c99cc..e2cada36266 100644 --- a/.github/workflows/spec-enforcer.lock.yml +++ b/.github/workflows/spec-enforcer.lock.yml @@ -370,7 +370,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -467,7 +467,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1399,7 +1399,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/spec-extractor.lock.yml b/.github/workflows/spec-extractor.lock.yml index dc9a818a974..c18afa870e8 100644 --- a/.github/workflows/spec-extractor.lock.yml +++ b/.github/workflows/spec-extractor.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1512,7 +1512,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/spec-librarian.lock.yml b/.github/workflows/spec-librarian.lock.yml index bdf567741fc..3d94b7e3af0 100644 --- a/.github/workflows/spec-librarian.lock.yml +++ b/.github/workflows/spec-librarian.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -466,7 +466,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1455,7 +1455,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/squad-game-planner.lock.yml b/.github/workflows/squad-game-planner.lock.yml index 0ddcc509409..3913ef549cf 100644 --- a/.github/workflows/squad-game-planner.lock.yml +++ b/.github/workflows/squad-game-planner.lock.yml @@ -365,7 +365,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -470,7 +470,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Restore ambient folders from activation artifact env: @@ -1381,7 +1381,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/squad-implement-worker.lock.yml b/.github/workflows/squad-implement-worker.lock.yml index d3e847dcd60..06242fca83d 100644 --- a/.github/workflows/squad-implement-worker.lock.yml +++ b/.github/workflows/squad-implement-worker.lock.yml @@ -403,7 +403,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -506,7 +506,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Restore ambient folders from activation artifact env: @@ -1543,7 +1543,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/squad-plan.lock.yml b/.github/workflows/squad-plan.lock.yml index f52416c6d88..cdab7c02bc3 100644 --- a/.github/workflows/squad-plan.lock.yml +++ b/.github/workflows/squad-plan.lock.yml @@ -422,7 +422,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -524,7 +524,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Restore ambient folders from activation artifact env: @@ -1453,7 +1453,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/squad.lock.yml b/.github/workflows/squad.lock.yml index b04a304a3cd..1739fc5d2d4 100644 --- a/.github/workflows/squad.lock.yml +++ b/.github/workflows/squad.lock.yml @@ -449,7 +449,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -552,7 +552,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Restore ambient folders from activation artifact env: @@ -2096,7 +2096,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/stale-pr-cleanup.lock.yml b/.github/workflows/stale-pr-cleanup.lock.yml index fb99f1f9718..2a82bfba933 100644 --- a/.github/workflows/stale-pr-cleanup.lock.yml +++ b/.github/workflows/stale-pr-cleanup.lock.yml @@ -341,7 +341,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -447,7 +447,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1418,7 +1418,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index 519c9b837f8..35d4b1ecc97 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -383,7 +383,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -510,7 +510,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1663,7 +1663,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml index 8bac2989403..20e00159bfe 100644 --- a/.github/workflows/static-analysis-report.lock.yml +++ b/.github/workflows/static-analysis-report.lock.yml @@ -367,7 +367,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1606,7 +1606,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/step-name-alignment.lock.yml b/.github/workflows/step-name-alignment.lock.yml index 8efe863e4a0..9dfffcc84af 100644 --- a/.github/workflows/step-name-alignment.lock.yml +++ b/.github/workflows/step-name-alignment.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -464,7 +464,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1475,7 +1475,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/sub-issue-closer.lock.yml b/.github/workflows/sub-issue-closer.lock.yml index 49bcdceff0c..e759e71fb45 100644 --- a/.github/workflows/sub-issue-closer.lock.yml +++ b/.github/workflows/sub-issue-closer.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -452,7 +452,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1420,7 +1420,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml index b08dd55cb90..d39be5aaf6c 100644 --- a/.github/workflows/super-linter.lock.yml +++ b/.github/workflows/super-linter.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -470,7 +470,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1418,7 +1418,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml index 5ed4522e711..ff685eecc39 100644 --- a/.github/workflows/technical-doc-writer.lock.yml +++ b/.github/workflows/technical-doc-writer.lock.yml @@ -379,7 +379,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1594,7 +1594,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/terminal-stylist.lock.yml b/.github/workflows/terminal-stylist.lock.yml index 802a27cbc93..71086f23004 100644 --- a/.github/workflows/terminal-stylist.lock.yml +++ b/.github/workflows/terminal-stylist.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1389,7 +1389,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/test-quality-sentinel.lock.yml b/.github/workflows/test-quality-sentinel.lock.yml index eeaf5f928b6..6215383411b 100644 --- a/.github/workflows/test-quality-sentinel.lock.yml +++ b/.github/workflows/test-quality-sentinel.lock.yml @@ -453,7 +453,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -555,7 +555,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - env: EXPR_GITHUB_EVENT_PULL_REQUEST_BASE_SHA: ${{ github.event.pull_request.base.sha }} @@ -1559,7 +1559,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml index 406ee89dd3e..6de76dac643 100644 --- a/.github/workflows/tidy.lock.yml +++ b/.github/workflows/tidy.lock.yml @@ -404,7 +404,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -509,7 +509,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -1533,7 +1533,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml index 2c18a2774aa..e27b4404caf 100644 --- a/.github/workflows/typist.lock.yml +++ b/.github/workflows/typist.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -504,7 +504,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1511,7 +1511,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ubuntu-image-analyzer.lock.yml b/.github/workflows/ubuntu-image-analyzer.lock.yml index 58aa649d400..83bffc44f5c 100644 --- a/.github/workflows/ubuntu-image-analyzer.lock.yml +++ b/.github/workflows/ubuntu-image-analyzer.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -464,7 +464,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1424,7 +1424,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/uk-ai-operational-resilience.lock.yml b/.github/workflows/uk-ai-operational-resilience.lock.yml index 438a9a0215e..b35a162581e 100644 --- a/.github/workflows/uk-ai-operational-resilience.lock.yml +++ b/.github/workflows/uk-ai-operational-resilience.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1429,7 +1429,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml index 06cc42b215b..28121cc398c 100644 --- a/.github/workflows/unbloat-docs.lock.yml +++ b/.github/workflows/unbloat-docs.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1524,7 +1524,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/update-astro.lock.yml b/.github/workflows/update-astro.lock.yml index 8fa41cff8f3..eff139e1641 100644 --- a/.github/workflows/update-astro.lock.yml +++ b/.github/workflows/update-astro.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -472,7 +472,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1449,7 +1449,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml index 9d5ed874811..fcba6564ae2 100644 --- a/.github/workflows/video-analyzer.lock.yml +++ b/.github/workflows/video-analyzer.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - id: setup-ffmpeg name: Setup FFmpeg @@ -1366,7 +1366,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/visual-regression-checker.lock.yml b/.github/workflows/visual-regression-checker.lock.yml index fc389aa3620..d6fb29fe77f 100644 --- a/.github/workflows/visual-regression-checker.lock.yml +++ b/.github/workflows/visual-regression-checker.lock.yml @@ -371,7 +371,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Checkout repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -1430,7 +1430,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/weekly-blog-post-writer.lock.yml b/.github/workflows/weekly-blog-post-writer.lock.yml index b8c79feb2b3..79b3d46c91d 100644 --- a/.github/workflows/weekly-blog-post-writer.lock.yml +++ b/.github/workflows/weekly-blog-post-writer.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -561,7 +561,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone wiki-memory branch (default) @@ -1639,7 +1639,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/weekly-editors-health-check.lock.yml b/.github/workflows/weekly-editors-health-check.lock.yml index cf912c88360..3873b075ba7 100644 --- a/.github/workflows/weekly-editors-health-check.lock.yml +++ b/.github/workflows/weekly-editors-health-check.lock.yml @@ -347,7 +347,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -452,7 +452,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1451,7 +1451,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml index b84669ae3ac..6f5ab6d4441 100644 --- a/.github/workflows/weekly-issue-summary.lock.yml +++ b/.github/workflows/weekly-issue-summary.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -473,7 +473,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1442,7 +1442,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml index 4d7c73868f2..d2c6f6f0348 100644 --- a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml +++ b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml @@ -347,7 +347,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1393,7 +1393,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/workflow-generator.lock.yml b/.github/workflows/workflow-generator.lock.yml index ed83621f104..c9d295a7e5c 100644 --- a/.github/workflows/workflow-generator.lock.yml +++ b/.github/workflows/workflow-generator.lock.yml @@ -389,7 +389,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -491,7 +491,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1462,7 +1462,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/workflow-health-manager.lock.yml b/.github/workflows/workflow-health-manager.lock.yml index 9c02bac0dae..41e9a5becdf 100644 --- a/.github/workflows/workflow-health-manager.lock.yml +++ b/.github/workflows/workflow-health-manager.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -467,7 +467,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1509,7 +1509,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/workflow-normalizer.lock.yml b/.github/workflows/workflow-normalizer.lock.yml index 9903eb5dc6c..4255e881bd7 100644 --- a/.github/workflows/workflow-normalizer.lock.yml +++ b/.github/workflows/workflow-normalizer.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -496,7 +496,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1504,7 +1504,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/workflow-skill-extractor.lock.yml b/.github/workflows/workflow-skill-extractor.lock.yml index 0ebe6500881..b0ab06d60db 100644 --- a/.github/workflows/workflow-skill-extractor.lock.yml +++ b/.github/workflows/workflow-skill-extractor.lock.yml @@ -345,7 +345,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation + name: activation-artifact include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Build workflow index uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 @@ -1409,7 +1409,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation + name: activation-artifact path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output From b7e0c8310c60c39b5974b66ff3f62f033c204885 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 20 Aug 2026 13:35:47 +0000 Subject: [PATCH 5/5] Rename activation artifact to ambient Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/ab-testing-advisor.lock.yml | 6 +++--- .github/workflows/ace-editor.lock.yml | 4 ++-- .github/workflows/agent-job-health.lock.yml | 6 +++--- .../agent-performance-analyzer.lock.yml | 6 +++--- .../workflows/agent-persona-explorer.lock.yml | 6 +++--- .github/workflows/agentic-token-audit.lock.yml | 6 +++--- .../workflows/agentic-token-optimizer.lock.yml | 4 ++-- .../agentic-token-trend-audit.lock.yml | 6 +++--- .github/workflows/ai-moderator.lock.yml | 4 ++-- .../workflows/api-consumption-report.lock.yml | 6 +++--- .github/workflows/approach-validator.lock.yml | 6 +++--- .github/workflows/archie.lock.yml | 6 +++--- .../workflows/architecture-guardian.lock.yml | 6 +++--- .../archivx-agentic-workflows-analyzer.lock.yml | 6 +++--- .github/workflows/artifacts-summary.lock.yml | 6 +++--- .github/workflows/audit-workflows.lock.yml | 6 +++--- .github/workflows/auto-triage-issues.lock.yml | 6 +++--- .github/workflows/avenger.lock.yml | 6 +++--- .../workflows/aw-failure-investigator.lock.yml | 6 +++--- .github/workflows/blog-auditor.lock.yml | 6 +++--- .github/workflows/bot-detection.lock.yml | 4 ++-- .../workflows/breaking-change-checker.lock.yml | 6 +++--- .github/workflows/changeset.lock.yml | 6 +++--- .../workflows/chaos-pr-bundle-fuzzer.lock.yml | 6 +++--- .github/workflows/ci-coach.lock.yml | 6 +++--- .github/workflows/ci-doctor.lock.yml | 6 +++--- .../claude-code-user-docs-review.lock.yml | 6 +++--- .../workflows/cli-consistency-checker.lock.yml | 6 +++--- .github/workflows/cli-version-checker.lock.yml | 6 +++--- .github/workflows/cloclo.lock.yml | 6 +++--- .github/workflows/code-scanning-fixer.lock.yml | 6 +++--- .github/workflows/code-simplifier.lock.yml | 6 +++--- .../codex-github-remote-mcp-test.lock.yml | 4 ++-- .../workflows/commit-changes-analyzer.lock.yml | 6 +++--- .../workflows/constraint-solving-potd.lock.yml | 6 +++--- .github/workflows/contribution-check.lock.yml | 6 +++--- .../workflows/copilot-agent-analysis.lock.yml | 6 +++--- .../copilot-centralization-drilldown.lock.yml | 6 +++--- .../copilot-centralization-optimizer.lock.yml | 6 +++--- .../copilot-cli-deep-research.lock.yml | 6 +++--- .github/workflows/copilot-opt.lock.yml | 6 +++--- .../workflows/copilot-pr-merged-report.lock.yml | 6 +++--- .../workflows/copilot-pr-nlp-analysis.lock.yml | 6 +++--- .../copilot-pr-prompt-analysis.lock.yml | 6 +++--- .../workflows/copilot-session-insights.lock.yml | 6 +++--- .github/workflows/craft.lock.yml | 6 +++--- .../daily-action-setup-security-audit.lock.yml | 6 +++--- .../daily-agent-of-the-day-blog-writer.lock.yml | 6 +++--- .../daily-agentrx-trace-optimizer.lock.yml | 6 +++--- .../daily-ambient-context-optimizer.lock.yml | 6 +++--- .../daily-architecture-diagram.lock.yml | 6 +++--- .../workflows/daily-arxiv-researcher.lock.yml | 6 +++--- .../daily-assign-issue-to-user.lock.yml | 6 +++--- ...-astrostylelite-markdown-spellcheck.lock.yml | 6 +++--- .../daily-aw-cross-repo-compile-check.lock.yml | 6 +++--- .../daily-awf-spec-compiler-surfacing.lock.yml | 6 +++--- .../workflows/daily-byok-ollama-test.lock.yml | 6 +++--- .../daily-cache-strategy-analyzer.lock.yml | 6 +++--- .../workflows/daily-caveman-optimizer.lock.yml | 6 +++--- .github/workflows/daily-choice-test.lock.yml | 6 +++--- .../workflows/daily-cli-performance.lock.yml | 6 +++--- .../workflows/daily-cli-tools-tester.lock.yml | 6 +++--- .../workflows/daily-code-debt-aider.lock.yml | 6 +++--- .github/workflows/daily-code-metrics.lock.yml | 6 +++--- .../daily-community-attribution.lock.yml | 6 +++--- .../workflows/daily-compiler-quality.lock.yml | 6 +++--- ...aily-compiler-threat-spec-optimizer.lock.yml | 6 +++--- .../workflows/daily-credit-limit-test.lock.yml | 6 +++--- .github/workflows/daily-doc-healer.lock.yml | 6 +++--- .github/workflows/daily-doc-updater.lock.yml | 6 +++--- .../daily-elixir-credo-snippet-audit.lock.yml | 6 +++--- .github/workflows/daily-evals-report.lock.yml | 6 +++--- .../workflows/daily-experiment-report.lock.yml | 6 +++--- .github/workflows/daily-fact.lock.yml | 6 +++--- .github/workflows/daily-file-diet.lock.yml | 6 +++--- .../workflows/daily-firewall-report.lock.yml | 6 +++--- .../daily-formal-spec-verifier.lock.yml | 6 +++--- .github/workflows/daily-function-namer.lock.yml | 6 +++--- .github/workflows/daily-geo-optimizer.lock.yml | 6 +++--- .../daily-github-docs-seo-optimizer.lock.yml | 6 +++--- .../daily-go-test-parallelizer.lock.yml | 6 +++--- .../daily-go-test-stubs-aider.lock.yml | 6 +++--- .../workflows/daily-graft-intelligence.lock.yml | 6 +++--- .github/workflows/daily-hippo-learn.lock.yml | 6 +++--- .github/workflows/daily-issues-report.lock.yml | 6 +++--- .../daily-malicious-code-scan.lock.yml | 4 ++-- .../daily-max-ai-credits-test.lock.yml | 6 +++--- .../daily-mcp-concurrency-analysis.lock.yml | 6 +++--- .../workflows/daily-model-inventory.lock.yml | 6 +++--- .../workflows/daily-model-resolution.lock.yml | 6 +++--- .../daily-multi-device-docs-tester.lock.yml | 6 +++--- .github/workflows/daily-news.lock.yml | 6 +++--- .../daily-observability-report.lock.yml | 6 +++--- .../daily-performance-summary.lock.yml | 6 +++--- .../workflows/daily-pr-review-cursor.lock.yml | 6 +++--- .../daily-regression-audit-kiro.lock.yml | 6 +++--- .github/workflows/daily-regulatory.lock.yml | 6 +++--- .../workflows/daily-reliability-review.lock.yml | 6 +++--- .../daily-rendering-scripts-verifier.lock.yml | 6 +++--- .github/workflows/daily-repo-chronicle.lock.yml | 6 +++--- .../daily-safe-output-integrator.lock.yml | 6 +++--- .../daily-safe-output-optimizer.lock.yml | 6 +++--- .../daily-safe-outputs-conformance.lock.yml | 6 +++--- .../daily-safeoutputs-git-simulator.lock.yml | 6 +++--- .../daily-schema-audit-cursor.lock.yml | 6 +++--- .../workflows/daily-secrets-analysis.lock.yml | 6 +++--- .../daily-security-observability.lock.yml | 6 +++--- .../workflows/daily-security-red-team.lock.yml | 6 +++--- .github/workflows/daily-semgrep-scan.lock.yml | 6 +++--- .../workflows/daily-spdd-spec-planner.lock.yml | 6 +++--- .../workflows/daily-spec-coverage-kiro.lock.yml | 6 +++--- .../workflows/daily-spending-forecast.lock.yml | 6 +++--- .../workflows/daily-squid-image-scan.lock.yml | 6 +++--- .../daily-syntax-error-quality.lock.yml | 6 +++--- .../daily-team-evolution-insights.lock.yml | 6 +++--- .github/workflows/daily-team-status.lock.yml | 6 +++--- .../daily-testify-uber-super-expert.lock.yml | 6 +++--- .../daily-token-consumption-report.lock.yml | 6 +++--- .../workflows/daily-vulnhunter-scan.lock.yml | 6 +++--- ...indows-terminal-integration-builder.lock.yml | 6 +++--- .../workflows/daily-workflow-updater.lock.yml | 6 +++--- .github/workflows/daily-yamllint-fixer.lock.yml | 6 +++--- .../dataflow-pr-discussion-dataset.lock.yml | 6 +++--- .github/workflows/dead-code-remover.lock.yml | 6 +++--- .github/workflows/deep-report.lock.yml | 6 +++--- .../workflows/deepsec-security-scan.lock.yml | 6 +++--- .github/workflows/delight.lock.yml | 6 +++--- .github/workflows/dependabot-burner.lock.yml | 6 +++--- .../workflows/dependabot-go-checker.lock.yml | 6 +++--- .../deployment-incident-monitor.lock.yml | 6 +++--- .github/workflows/design-decision-gate.lock.yml | 6 +++--- .github/workflows/designer-drift-audit.lock.yml | 6 +++--- .../detection-analysis-report.lock.yml | 6 +++--- .github/workflows/dev-hawk.lock.yml | 6 +++--- .github/workflows/dev.lock.yml | 6 +++--- .../developer-docs-consolidator.lock.yml | 6 +++--- .github/workflows/dictation-prompt.lock.yml | 6 +++--- .github/workflows/docs-noob-tester.lock.yml | 6 +++--- .github/workflows/draft-pr-cleanup.lock.yml | 6 +++--- .../workflows/duplicate-code-detector.lock.yml | 6 +++--- .github/workflows/eslint-miner.lock.yml | 6 +++--- .github/workflows/eslint-monster.lock.yml | 6 +++--- .github/workflows/eslint-refiner.lock.yml | 6 +++--- .github/workflows/evoskill-evolver.lock.yml | 6 +++--- .../example-failure-category-filter.lock.yml | 6 +++--- .../example-permissions-warning.lock.yml | 4 ++-- .../example-workflow-analyzer.lock.yml | 6 +++--- .github/workflows/firewall-escape.lock.yml | 6 +++--- .github/workflows/firewall.lock.yml | 4 ++-- .../workflows/functional-pragmatist.lock.yml | 6 +++--- .../github-mcp-structural-analysis.lock.yml | 6 +++--- .../workflows/github-mcp-tools-report.lock.yml | 6 +++--- .../github-remote-mcp-auth-test.lock.yml | 6 +++--- .github/workflows/glossary-maintainer.lock.yml | 6 +++--- .github/workflows/go-fan.lock.yml | 6 +++--- .github/workflows/go-logger.lock.yml | 6 +++--- .github/workflows/go-pattern-detector.lock.yml | 6 +++--- .github/workflows/gpclean.lock.yml | 6 +++--- .github/workflows/grumpy-reviewer.lock.yml | 6 +++--- .github/workflows/hippo-embed.lock.yml | 4 ++-- .github/workflows/hourly-ci-cleaner.lock.yml | 6 +++--- .../impeccable-skills-reviewer.lock.yml | 6 +++--- .github/workflows/instructions-janitor.lock.yml | 6 +++--- .github/workflows/issue-arborist.lock.yml | 6 +++--- .github/workflows/issue-monster.lock.yml | 6 +++--- .github/workflows/issue-triage-agent.lock.yml | 6 +++--- .github/workflows/jsweep.lock.yml | 6 +++--- .../workflows/layout-spec-maintainer.lock.yml | 6 +++--- .github/workflows/lint-monster.lock.yml | 6 +++--- .github/workflows/linter-miner.lock.yml | 6 +++--- .github/workflows/lockfile-stats.lock.yml | 6 +++--- .../mattpocock-skills-reviewer.lock.yml | 6 +++--- .github/workflows/mcp-inspector.lock.yml | 6 +++--- .github/workflows/mergefest.lock.yml | 6 +++--- .github/workflows/metrics-collector.lock.yml | 6 +++--- .github/workflows/necromancer.lock.yml | 6 +++--- .github/workflows/notion-issue-summary.lock.yml | 4 ++-- .../workflows/objective-impact-report.lock.yml | 6 +++--- .github/workflows/org-health-report.lock.yml | 6 +++--- .github/workflows/outcome-collector.lock.yml | 6 +++--- .github/workflows/pdf-summary.lock.yml | 6 +++--- .github/workflows/plan.lock.yml | 6 +++--- .github/workflows/poem-bot.lock.yml | 6 +++--- .github/workflows/ponytail-reviewer.lock.yml | 6 +++--- .github/workflows/portfolio-analyst.lock.yml | 6 +++--- .../workflows/pr-code-quality-reviewer.lock.yml | 6 +++--- .../workflows/pr-description-caveman.lock.yml | 6 +++--- .github/workflows/pr-nitpick-reviewer.lock.yml | 6 +++--- .github/workflows/pr-sous-chef.lock.yml | 6 +++--- .github/workflows/pr-triage-agent.lock.yml | 6 +++--- .../prompt-clustering-analysis.lock.yml | 6 +++--- .github/workflows/purelock.lock.yml | 6 +++--- .github/workflows/python-data-charts.lock.yml | 6 +++--- .github/workflows/q.lock.yml | 6 +++--- .github/workflows/refactoring-cadence.lock.yml | 6 +++--- .github/workflows/refiner.lock.yml | 6 +++--- .github/workflows/release.lock.yml | 4 ++-- .github/workflows/repo-audit-analyzer.lock.yml | 6 +++--- .github/workflows/repo-tree-map.lock.yml | 6 +++--- .../repository-quality-improver.lock.yml | 6 +++--- .github/workflows/research.lock.yml | 6 +++--- .github/workflows/ruflo-backed-task.lock.yml | 6 +++--- .github/workflows/safe-output-health.lock.yml | 6 +++--- .../schema-consistency-checker.lock.yml | 6 +++--- .../workflows/schema-feature-coverage.lock.yml | 6 +++--- .github/workflows/scout.lock.yml | 6 +++--- .github/workflows/security-compliance.lock.yml | 6 +++--- .github/workflows/security-review.lock.yml | 6 +++--- .../semantic-function-refactor.lock.yml | 6 +++--- .github/workflows/sergo.lock.yml | 6 +++--- .../workflows/sighthound-security-scan.lock.yml | 6 +++--- .github/workflows/skillet.lock.yml | 6 +++--- .../workflows/slide-deck-maintainer.lock.yml | 6 +++--- .../workflows/smoke-agent-all-merged.lock.yml | 6 +++--- .github/workflows/smoke-agent-all-none.lock.yml | 6 +++--- .../smoke-agent-public-approved.lock.yml | 6 +++--- .../workflows/smoke-agent-public-none.lock.yml | 6 +++--- .../smoke-agent-scoped-approved.lock.yml | 6 +++--- .github/workflows/smoke-aider.lock.yml | 6 +++--- .github/workflows/smoke-call-workflow.lock.yml | 6 +++--- .../smoke-checkout-pr-dispatch.lock.yml | 6 +++--- .github/workflows/smoke-ci.lock.yml | 4 ++-- .../workflows/smoke-claude-on-copilot.lock.yml | 6 +++--- .github/workflows/smoke-claude.lock.yml | 6 +++--- .github/workflows/smoke-codex.lock.yml | 6 +++--- .../smoke-copilot-aoai-apikey.lock.yml | 6 +++--- .../workflows/smoke-copilot-aoai-entra.lock.yml | 6 +++--- .github/workflows/smoke-copilot-arm.lock.yml | 6 +++--- .github/workflows/smoke-copilot-auto.lock.yml | 6 +++--- .github/workflows/smoke-copilot-mai.lock.yml | 6 +++--- .github/workflows/smoke-copilot-sdk.lock.yml | 6 +++--- .github/workflows/smoke-copilot-small.lock.yml | 6 +++--- .../workflows/smoke-copilot-sub-agents.lock.yml | 6 +++--- .github/workflows/smoke-copilot.lock.yml | 6 +++--- .../smoke-create-cross-repo-pr.lock.yml | 6 +++--- .github/workflows/smoke-crush.lock.yml | 6 +++--- .github/workflows/smoke-cursor.lock.yml | 6 +++--- .../workflows/smoke-deepseek-harness.lock.yml | 6 +++--- .github/workflows/smoke-gemini.lock.yml | 6 +++--- .github/workflows/smoke-github-claude.lock.yml | 6 +++--- .github/workflows/smoke-goose.lock.yml | 6 +++--- .github/workflows/smoke-kiro.lock.yml | 6 +++--- .github/workflows/smoke-multi-pr.lock.yml | 6 +++--- .github/workflows/smoke-opencode.lock.yml | 6 +++--- .github/workflows/smoke-otel-backends.lock.yml | 6 +++--- .github/workflows/smoke-pi.lock.yml | 6 +++--- .github/workflows/smoke-project.lock.yml | 6 +++--- .github/workflows/smoke-pydantic.lock.yml | 6 +++--- .github/workflows/smoke-service-ports.lock.yml | 6 +++--- .github/workflows/smoke-temporary-id.lock.yml | 6 +++--- .github/workflows/smoke-test-tools.lock.yml | 6 +++--- .../smoke-update-cross-repo-pr.lock.yml | 6 +++--- .../smoke-workflow-call-with-inputs.lock.yml | 6 +++--- .github/workflows/smoke-workflow-call.lock.yml | 6 +++--- .github/workflows/spec-enforcer.lock.yml | 6 +++--- .github/workflows/spec-extractor.lock.yml | 6 +++--- .github/workflows/spec-librarian.lock.yml | 6 +++--- .github/workflows/squad-game-planner.lock.yml | 6 +++--- .../workflows/squad-implement-worker.lock.yml | 6 +++--- .github/workflows/squad-plan.lock.yml | 6 +++--- .github/workflows/squad.lock.yml | 6 +++--- .github/workflows/stale-pr-cleanup.lock.yml | 6 +++--- .../workflows/stale-repo-identifier.lock.yml | 6 +++--- .../workflows/static-analysis-report.lock.yml | 6 +++--- .github/workflows/step-name-alignment.lock.yml | 6 +++--- .github/workflows/sub-issue-closer.lock.yml | 6 +++--- .github/workflows/super-linter.lock.yml | 6 +++--- .github/workflows/technical-doc-writer.lock.yml | 6 +++--- .github/workflows/terminal-stylist.lock.yml | 6 +++--- .../workflows/test-quality-sentinel.lock.yml | 6 +++--- .github/workflows/tidy.lock.yml | 6 +++--- .github/workflows/typist.lock.yml | 6 +++--- .../workflows/ubuntu-image-analyzer.lock.yml | 6 +++--- .../uk-ai-operational-resilience.lock.yml | 6 +++--- .github/workflows/unbloat-docs.lock.yml | 6 +++--- .github/workflows/update-astro.lock.yml | 6 +++--- .github/workflows/video-analyzer.lock.yml | 6 +++--- .../visual-regression-checker.lock.yml | 6 +++--- .../workflows/weekly-blog-post-writer.lock.yml | 6 +++--- .../weekly-editors-health-check.lock.yml | 6 +++--- .github/workflows/weekly-issue-summary.lock.yml | 6 +++--- .../weekly-safe-outputs-spec-review.lock.yml | 6 +++--- .github/workflows/workflow-generator.lock.yml | 6 +++--- .../workflows/workflow-health-manager.lock.yml | 6 +++--- .github/workflows/workflow-normalizer.lock.yml | 6 +++--- .../workflows/workflow-skill-extractor.lock.yml | 6 +++--- pkg/cli/logs_artifact_set.go | 12 ++++++++---- pkg/cli/logs_artifact_set_test.go | 17 +++++++++++------ pkg/cli/logs_download.go | 15 +++++++++++---- pkg/cli/logs_download_artifacts.go | 2 +- pkg/cli/logs_download_flatten.go | 7 +++++-- pkg/cli/logs_download_test.go | 2 +- pkg/constants/job_constants.go | 15 +++++++++++---- pkg/workflow/compiler_activation_outputs.go | 2 +- .../compiler_activation_outputs_test.go | 2 +- pkg/workflow/compiler_yaml_runtime_setup.go | 2 +- .../TestWasmGolden_AllEngines/claude.golden | 4 ++-- .../TestWasmGolden_AllEngines/codex.golden | 4 ++-- .../TestWasmGolden_AllEngines/copilot.golden | 4 ++-- .../TestWasmGolden_AllEngines/gemini.golden | 4 ++-- .../TestWasmGolden_AllEngines/pi.golden | 4 ++-- .../basic-copilot.golden | 4 ++-- .../playwright-cli-mode.golden | 4 ++-- .../smoke-copilot.golden | 4 ++-- .../with-imports.golden | 4 ++-- pkg/workflow/threat_detection_job.go | 2 +- pkg/workflow/threat_detection_test.go | 6 +++--- 307 files changed, 919 insertions(+), 893 deletions(-) diff --git a/.github/workflows/ab-testing-advisor.lock.yml b/.github/workflows/ab-testing-advisor.lock.yml index db17f5b7297..978a2913440 100644 --- a/.github/workflows/ab-testing-advisor.lock.yml +++ b/.github/workflows/ab-testing-advisor.lock.yml @@ -354,7 +354,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -453,7 +453,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1369,7 +1369,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ace-editor.lock.yml b/.github/workflows/ace-editor.lock.yml index c507a130cd9..3c1ce95f14e 100644 --- a/.github/workflows/ace-editor.lock.yml +++ b/.github/workflows/ace-editor.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/agent-job-health.lock.yml b/.github/workflows/agent-job-health.lock.yml index 769010afaf5..d735370fc24 100644 --- a/.github/workflows/agent-job-health.lock.yml +++ b/.github/workflows/agent-job-health.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -505,7 +505,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1630,7 +1630,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/agent-performance-analyzer.lock.yml b/.github/workflows/agent-performance-analyzer.lock.yml index f5512ac71c7..1e61a928da8 100644 --- a/.github/workflows/agent-performance-analyzer.lock.yml +++ b/.github/workflows/agent-performance-analyzer.lock.yml @@ -400,7 +400,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -538,7 +538,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1624,7 +1624,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/agent-persona-explorer.lock.yml b/.github/workflows/agent-persona-explorer.lock.yml index c9cf16ab120..dadb3552c03 100644 --- a/.github/workflows/agent-persona-explorer.lock.yml +++ b/.github/workflows/agent-persona-explorer.lock.yml @@ -398,7 +398,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -526,7 +526,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1482,7 +1482,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/agentic-token-audit.lock.yml b/.github/workflows/agentic-token-audit.lock.yml index 9c425632524..5a695bbf579 100644 --- a/.github/workflows/agentic-token-audit.lock.yml +++ b/.github/workflows/agentic-token-audit.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -491,7 +491,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1536,7 +1536,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/agentic-token-optimizer.lock.yml b/.github/workflows/agentic-token-optimizer.lock.yml index cbe73e2f3c4..e5c94cfe85f 100644 --- a/.github/workflows/agentic-token-optimizer.lock.yml +++ b/.github/workflows/agentic-token-optimizer.lock.yml @@ -344,7 +344,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -457,7 +457,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) diff --git a/.github/workflows/agentic-token-trend-audit.lock.yml b/.github/workflows/agentic-token-trend-audit.lock.yml index d561e7d75f5..c6c6377da58 100644 --- a/.github/workflows/agentic-token-trend-audit.lock.yml +++ b/.github/workflows/agentic-token-trend-audit.lock.yml @@ -338,7 +338,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Setup Python uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0 @@ -1477,7 +1477,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml index fd2811f7f26..67128b2bff7 100644 --- a/.github/workflows/ai-moderator.lock.yml +++ b/.github/workflows/ai-moderator.lock.yml @@ -423,7 +423,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -522,7 +522,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory diff --git a/.github/workflows/api-consumption-report.lock.yml b/.github/workflows/api-consumption-report.lock.yml index b478a710d38..277feee1bf6 100644 --- a/.github/workflows/api-consumption-report.lock.yml +++ b/.github/workflows/api-consumption-report.lock.yml @@ -375,7 +375,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -518,7 +518,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1615,7 +1615,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/approach-validator.lock.yml b/.github/workflows/approach-validator.lock.yml index 6ddf1694e84..63a41178f0f 100644 --- a/.github/workflows/approach-validator.lock.yml +++ b/.github/workflows/approach-validator.lock.yml @@ -449,7 +449,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -551,7 +551,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1598,7 +1598,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml index b709fbbd7c2..628fa8d2009 100644 --- a/.github/workflows/archie.lock.yml +++ b/.github/workflows/archie.lock.yml @@ -409,7 +409,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1492,7 +1492,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/architecture-guardian.lock.yml b/.github/workflows/architecture-guardian.lock.yml index 7e3c05fc2dc..e1acb496e58 100644 --- a/.github/workflows/architecture-guardian.lock.yml +++ b/.github/workflows/architecture-guardian.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Collect architecture metrics run: "set -euo pipefail\nmkdir -p /tmp/gh-aw/agent\n\n# Read thresholds from .architecture.yml or use defaults\nFILE_LINES_BLOCKER=1000\nFILE_LINES_WARNING=500\nFUNCTION_LINES=80\nMAX_EXPORTS=10\n\nif [ -f .architecture.yml ]; then\n b=$(grep -E '^\\s*file_lines_blocker:' .architecture.yml 2>/dev/null | awk '{print $2}' | tr -d '\"' | head -1 || true)\n w=$(grep -E '^\\s*file_lines_warning:' .architecture.yml 2>/dev/null | awk '{print $2}' | tr -d '\"' | head -1 || true)\n f=$(grep -E '^\\s*function_lines:' .architecture.yml 2>/dev/null | awk '{print $2}' | tr -d '\"' | head -1 || true)\n e=$(grep -E '^\\s*max_exports:' .architecture.yml 2>/dev/null | awk '{print $2}' | tr -d '\"' | head -1 || true)\n [[ -n \"${b:-}\" && \"$b\" =~ ^[0-9]+$ ]] && FILE_LINES_BLOCKER=$b\n [[ -n \"${w:-}\" && \"$w\" =~ ^[0-9]+$ ]] && FILE_LINES_WARNING=$w\n [[ -n \"${f:-}\" && \"$f\" =~ ^[0-9]+$ ]] && FUNCTION_LINES=$f\n [[ -n \"${e:-}\" && \"$e\" =~ ^[0-9]+$ ]] && MAX_EXPORTS=$e\nfi\n\n# Get changed Go/JS files in last 24 hours, excluding tests and vendor paths\nCHANGED_FILES=$(git log --since=\"24 hours ago\" --name-only --pretty=format: \\\n | sort -u \\\n | grep -E '\\.(go|js|cjs|mjs)$' \\\n | grep -vE '(node_modules/|vendor/|\\.git/|_test\\.go$)' \\\n | while IFS= read -r f; do [ -f \"$f\" ] && echo \"$f\"; done \\\n || true)\n\nif [ -z \"$CHANGED_FILES\" ]; then\n jq -n \\\n --argjson blocker \"$FILE_LINES_BLOCKER\" \\\n --argjson warning \"$FILE_LINES_WARNING\" \\\n --argjson func_lines \"$FUNCTION_LINES\" \\\n --argjson max_exports \"$MAX_EXPORTS\" \\\n '{noop: true, thresholds: {file_lines_blocker: $blocker, file_lines_warning: $warning, function_lines: $func_lines, max_exports: $max_exports}, files: [], import_cycles: \"\"}' \\\n > /tmp/gh-aw/agent/arch-metrics.json\n echo \"No changed Go/JS files found in the last 24 hours.\"\n exit 0\nfi\n\n# Build file metrics array\nFILES_JSON=\"[]\"\nwhile IFS= read -r FILE; do\n [ -z \"$FILE\" ] && continue\n LINES=$(wc -l < \"$FILE\" 2>/dev/null | tr -d ' ' || echo 0)\n EXT=\"${FILE##*.}\"\n\n if [[ \"$EXT\" == \"go\" ]]; then\n # Function sizes: \"func declaration\\tline_count\" per function\n # Pattern matches both regular functions (^func Name) and receiver methods (^func (r *T) Name)\n FUNC_DATA=$(awk '/^func /{if(start>0 && name!=\"\") printf \"%s\\t%d\\n\", name, NR-start; name=$0; start=NR} END{if(start>0 && name!=\"\") printf \"%s\\t%d\\n\", name, NR-start+1}' \"$FILE\" 2>/dev/null | head -50 || true)\n # Export count and names (top-level exported identifiers start with uppercase)\n EXPORT_COUNT=$(grep -cE \"^func [A-Z]|^type [A-Z]|^var [A-Z]|^const [A-Z]\" \"$FILE\" 2>/dev/null || echo 0)\n EXPORT_NAMES=$(grep -nE \"^func [A-Z]|^type [A-Z]|^var [A-Z]|^const [A-Z]\" \"$FILE\" 2>/dev/null | head -20 || true)\n else\n # JS/CJS/MJS: capture named functions, arrow functions, and class methods\n FUNC_DATA=$(grep -nE \"^function |^const [a-zA-Z_$][a-zA-Z0-9_$]* = (function|\\(|async \\(|async function)|^(export (default )?function|export const [a-zA-Z_$][a-zA-Z0-9_$]* =)|^[a-zA-Z_$][a-zA-Z0-9_$]*\\s*\\([^)]*\\)\\s*\\{\" \"$FILE\" 2>/dev/null | head -50 || true)\n CJS_COUNT=$(grep -cE \"^module\\.exports|^exports\\.\" \"$FILE\" 2>/dev/null || echo 0)\n ESM_COUNT=$(grep -cE \"^export \" \"$FILE\" 2>/dev/null || echo 0)\n EXPORT_COUNT=$((CJS_COUNT + ESM_COUNT))\n EXPORT_NAMES=$(grep -nE \"^export |^module\\.exports|^exports\\.\" \"$FILE\" 2>/dev/null | head -20 || true)\n fi\n\n FILES_JSON=$(jq \\\n --arg file \"$FILE\" \\\n --argjson lines \"$LINES\" \\\n --argjson exports \"$EXPORT_COUNT\" \\\n --arg func_data \"${FUNC_DATA:-}\" \\\n --arg export_names \"${EXPORT_NAMES:-}\" \\\n '. + [{file: $file, lines: $lines, export_count: $exports, func_data: $func_data, export_names: $export_names}]' \\\n <<< \"$FILES_JSON\")\ndone <<< \"$CHANGED_FILES\"\n\n# Check Go import cycles once across all packages\n# Note: go list may also emit errors for syntax issues; grep filters to only cycle errors\nIMPORT_CYCLES=$(go list ./... 2>&1 | grep -iE \"import cycle|cycle not allowed\" || true)\n\njq -n \\\n --argjson blocker \"$FILE_LINES_BLOCKER\" \\\n --argjson warning \"$FILE_LINES_WARNING\" \\\n --argjson func_lines \"$FUNCTION_LINES\" \\\n --argjson max_exports \"$MAX_EXPORTS\" \\\n --argjson files \"$FILES_JSON\" \\\n --arg import_cycles \"$IMPORT_CYCLES\" \\\n '{noop: false, thresholds: {file_lines_blocker: $blocker, file_lines_warning: $warning, function_lines: $func_lines, max_exports: $max_exports}, files: $files, import_cycles: $import_cycles}' \\\n > /tmp/gh-aw/agent/arch-metrics.json\n\nFILE_COUNT=$(echo \"$CHANGED_FILES\" | wc -l | tr -d ' ')\necho \"✅ Pre-computed metrics for $FILE_COUNT file(s) → /tmp/gh-aw/agent/arch-metrics.json\"" @@ -1414,7 +1414,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/archivx-agentic-workflows-analyzer.lock.yml b/.github/workflows/archivx-agentic-workflows-analyzer.lock.yml index 955cae6f824..3d51aa50db6 100644 --- a/.github/workflows/archivx-agentic-workflows-analyzer.lock.yml +++ b/.github/workflows/archivx-agentic-workflows-analyzer.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -492,7 +492,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Restore shared agentic logs cache id: restore-agentic-logs-cache @@ -1524,7 +1524,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml index dfdea6fb109..271ca3d617e 100644 --- a/.github/workflows/artifacts-summary.lock.yml +++ b/.github/workflows/artifacts-summary.lock.yml @@ -343,7 +343,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1360,7 +1360,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml index ea3dcaee39b..17977b72841 100644 --- a/.github/workflows/audit-workflows.lock.yml +++ b/.github/workflows/audit-workflows.lock.yml @@ -424,7 +424,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -566,7 +566,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1704,7 +1704,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/auto-triage-issues.lock.yml b/.github/workflows/auto-triage-issues.lock.yml index 9db940cdf32..c5569037acb 100644 --- a/.github/workflows/auto-triage-issues.lock.yml +++ b/.github/workflows/auto-triage-issues.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -475,7 +475,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Fetch unlabeled issues run: |- @@ -1390,7 +1390,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/avenger.lock.yml b/.github/workflows/avenger.lock.yml index 535ba027489..fb4cbb9b951 100644 --- a/.github/workflows/avenger.lock.yml +++ b/.github/workflows/avenger.lock.yml @@ -370,7 +370,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -485,7 +485,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Install Make run: | @@ -1545,7 +1545,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/aw-failure-investigator.lock.yml b/.github/workflows/aw-failure-investigator.lock.yml index 10c67274b04..7b07bb0815b 100644 --- a/.github/workflows/aw-failure-investigator.lock.yml +++ b/.github/workflows/aw-failure-investigator.lock.yml @@ -400,7 +400,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -536,7 +536,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -1636,7 +1636,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml index 9defbc1ece9..01a3e3e2db5 100644 --- a/.github/workflows/blog-auditor.lock.yml +++ b/.github/workflows/blog-auditor.lock.yml @@ -401,7 +401,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -507,7 +507,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1518,7 +1518,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/bot-detection.lock.yml b/.github/workflows/bot-detection.lock.yml index 3bb948f582b..bd77b5b402a 100644 --- a/.github/workflows/bot-detection.lock.yml +++ b/.github/workflows/bot-detection.lock.yml @@ -367,7 +367,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -475,7 +475,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml index 4de82f182bd..2f7bac76e82 100644 --- a/.github/workflows/breaking-change-checker.lock.yml +++ b/.github/workflows/breaking-change-checker.lock.yml @@ -394,7 +394,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -499,7 +499,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1451,7 +1451,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml index 12474316d62..33e7da3f77b 100644 --- a/.github/workflows/changeset.lock.yml +++ b/.github/workflows/changeset.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1479,7 +1479,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/chaos-pr-bundle-fuzzer.lock.yml b/.github/workflows/chaos-pr-bundle-fuzzer.lock.yml index 8bd6385668b..d323c61292c 100644 --- a/.github/workflows/chaos-pr-bundle-fuzzer.lock.yml +++ b/.github/workflows/chaos-pr-bundle-fuzzer.lock.yml @@ -355,7 +355,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -452,7 +452,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1369,7 +1369,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml index eb4808fd6ca..07f8a35bcac 100644 --- a/.github/workflows/ci-coach.lock.yml +++ b/.github/workflows/ci-coach.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -515,7 +515,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1522,7 +1522,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index bc934fae3c3..3f189b7d8c7 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -450,7 +450,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -557,7 +557,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1698,7 +1698,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/claude-code-user-docs-review.lock.yml b/.github/workflows/claude-code-user-docs-review.lock.yml index 3c346ebcd16..8254fc39ff7 100644 --- a/.github/workflows/claude-code-user-docs-review.lock.yml +++ b/.github/workflows/claude-code-user-docs-review.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -467,7 +467,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1484,7 +1484,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml index 208253be97f..0dd54c8aeb5 100644 --- a/.github/workflows/cli-consistency-checker.lock.yml +++ b/.github/workflows/cli-consistency-checker.lock.yml @@ -346,7 +346,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -453,7 +453,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1375,7 +1375,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml index 2c8e106bef1..02f6a0d593f 100644 --- a/.github/workflows/cli-version-checker.lock.yml +++ b/.github/workflows/cli-version-checker.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1476,7 +1476,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml index 4e0b924ea9b..b62e473c41f 100644 --- a/.github/workflows/cloclo.lock.yml +++ b/.github/workflows/cloclo.lock.yml @@ -472,7 +472,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -609,7 +609,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1823,7 +1823,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/code-scanning-fixer.lock.yml b/.github/workflows/code-scanning-fixer.lock.yml index 256ffa50a8e..cb95afc60ba 100644 --- a/.github/workflows/code-scanning-fixer.lock.yml +++ b/.github/workflows/code-scanning-fixer.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1501,7 +1501,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/code-simplifier.lock.yml b/.github/workflows/code-simplifier.lock.yml index 09881947ff1..0d5fbdd61a4 100644 --- a/.github/workflows/code-simplifier.lock.yml +++ b/.github/workflows/code-simplifier.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: EXPR_GITHUB_REPOSITORY: ${{ github.repository }} @@ -1427,7 +1427,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/codex-github-remote-mcp-test.lock.yml b/.github/workflows/codex-github-remote-mcp-test.lock.yml index 61a2e23aeb2..1434f3f4342 100644 --- a/.github/workflows/codex-github-remote-mcp-test.lock.yml +++ b/.github/workflows/codex-github-remote-mcp-test.lock.yml @@ -346,7 +346,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -447,7 +447,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml index 26bb387970e..bb54c24d4ae 100644 --- a/.github/workflows/commit-changes-analyzer.lock.yml +++ b/.github/workflows/commit-changes-analyzer.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1303,7 +1303,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/constraint-solving-potd.lock.yml b/.github/workflows/constraint-solving-potd.lock.yml index c2f3b34afc2..b68a4d15765 100644 --- a/.github/workflows/constraint-solving-potd.lock.yml +++ b/.github/workflows/constraint-solving-potd.lock.yml @@ -351,7 +351,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -456,7 +456,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1381,7 +1381,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/contribution-check.lock.yml b/.github/workflows/contribution-check.lock.yml index ca82a3a8808..7025b2e9ff2 100644 --- a/.github/workflows/contribution-check.lock.yml +++ b/.github/workflows/contribution-check.lock.yml @@ -359,7 +359,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -479,7 +479,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Fetch and filter PRs run: |- @@ -1555,7 +1555,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml index fb21cf1bfcc..f44b41a245d 100644 --- a/.github/workflows/copilot-agent-analysis.lock.yml +++ b/.github/workflows/copilot-agent-analysis.lock.yml @@ -417,7 +417,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -525,7 +525,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1564,7 +1564,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-centralization-drilldown.lock.yml b/.github/workflows/copilot-centralization-drilldown.lock.yml index 84a600258af..a2d0498e83c 100644 --- a/.github/workflows/copilot-centralization-drilldown.lock.yml +++ b/.github/workflows/copilot-centralization-drilldown.lock.yml @@ -335,7 +335,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -434,7 +434,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: CANDIDATE_JSON: ${{ inputs.candidate_json }} @@ -1344,7 +1344,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-centralization-optimizer.lock.yml b/.github/workflows/copilot-centralization-optimizer.lock.yml index 6c3248a36dd..52456511c1a 100644 --- a/.github/workflows/copilot-centralization-optimizer.lock.yml +++ b/.github/workflows/copilot-centralization-optimizer.lock.yml @@ -342,7 +342,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -444,7 +444,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1409,7 +1409,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-cli-deep-research.lock.yml b/.github/workflows/copilot-cli-deep-research.lock.yml index ce9dc410df3..57ade2b470f 100644 --- a/.github/workflows/copilot-cli-deep-research.lock.yml +++ b/.github/workflows/copilot-cli-deep-research.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -464,7 +464,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1421,7 +1421,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-opt.lock.yml b/.github/workflows/copilot-opt.lock.yml index 3c0e2c4dcbf..16d0a6359af 100644 --- a/.github/workflows/copilot-opt.lock.yml +++ b/.github/workflows/copilot-opt.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1480,7 +1480,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml index 6bb906ca23a..2f7c6b0cb19 100644 --- a/.github/workflows/copilot-pr-merged-report.lock.yml +++ b/.github/workflows/copilot-pr-merged-report.lock.yml @@ -340,7 +340,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -449,7 +449,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1365,7 +1365,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml index 467d878010d..9149f37c896 100644 --- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml +++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml @@ -374,7 +374,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -487,7 +487,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1532,7 +1532,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml index ee0d271c418..31ee6a1072a 100644 --- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml +++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1473,7 +1473,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml index 3c93657e6bd..f2afcc5c2f2 100644 --- a/.github/workflows/copilot-session-insights.lock.yml +++ b/.github/workflows/copilot-session-insights.lock.yml @@ -392,7 +392,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -504,7 +504,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1585,7 +1585,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml index a4ec2b1a6fa..e0f7f9ab7b8 100644 --- a/.github/workflows/craft.lock.yml +++ b/.github/workflows/craft.lock.yml @@ -403,7 +403,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -506,7 +506,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -1483,7 +1483,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-action-setup-security-audit.lock.yml b/.github/workflows/daily-action-setup-security-audit.lock.yml index 7ce02c8b725..670a81d8107 100644 --- a/.github/workflows/daily-action-setup-security-audit.lock.yml +++ b/.github/workflows/daily-action-setup-security-audit.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1458,7 +1458,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-agent-of-the-day-blog-writer.lock.yml b/.github/workflows/daily-agent-of-the-day-blog-writer.lock.yml index a2de99253c8..d64b8219f12 100644 --- a/.github/workflows/daily-agent-of-the-day-blog-writer.lock.yml +++ b/.github/workflows/daily-agent-of-the-day-blog-writer.lock.yml @@ -385,7 +385,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -522,7 +522,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone wiki-memory branch (default) @@ -1629,7 +1629,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-agentrx-trace-optimizer.lock.yml b/.github/workflows/daily-agentrx-trace-optimizer.lock.yml index d669f9b3636..23724f73819 100644 --- a/.github/workflows/daily-agentrx-trace-optimizer.lock.yml +++ b/.github/workflows/daily-agentrx-trace-optimizer.lock.yml @@ -404,7 +404,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -549,7 +549,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1664,7 +1664,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-ambient-context-optimizer.lock.yml b/.github/workflows/daily-ambient-context-optimizer.lock.yml index 1abcc7f1f88..660a1aacfab 100644 --- a/.github/workflows/daily-ambient-context-optimizer.lock.yml +++ b/.github/workflows/daily-ambient-context-optimizer.lock.yml @@ -355,7 +355,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -493,7 +493,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Restore shared agentic logs cache id: restore-agentic-logs-cache @@ -1522,7 +1522,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-architecture-diagram.lock.yml b/.github/workflows/daily-architecture-diagram.lock.yml index 3cdd04eb5db..e7eff6e3e02 100644 --- a/.github/workflows/daily-architecture-diagram.lock.yml +++ b/.github/workflows/daily-architecture-diagram.lock.yml @@ -389,7 +389,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -497,7 +497,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1551,7 +1551,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-arxiv-researcher.lock.yml b/.github/workflows/daily-arxiv-researcher.lock.yml index 8b766f8aee2..de284c7b515 100644 --- a/.github/workflows/daily-arxiv-researcher.lock.yml +++ b/.github/workflows/daily-arxiv-researcher.lock.yml @@ -334,7 +334,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -427,7 +427,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Fetch and parse arXiv papers uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 @@ -1597,7 +1597,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml index 3871488f033..05ca3965741 100644 --- a/.github/workflows/daily-assign-issue-to-user.lock.yml +++ b/.github/workflows/daily-assign-issue-to-user.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -456,7 +456,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1442,7 +1442,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml b/.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml index 69d3af8b12d..36be3c2565f 100644 --- a/.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml +++ b/.github/workflows/daily-astrostylelite-markdown-spellcheck.lock.yml @@ -387,7 +387,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -493,7 +493,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download spellcheck artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1494,7 +1494,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-aw-cross-repo-compile-check.lock.yml b/.github/workflows/daily-aw-cross-repo-compile-check.lock.yml index e70512bc782..bd3f82f365e 100644 --- a/.github/workflows/daily-aw-cross-repo-compile-check.lock.yml +++ b/.github/workflows/daily-aw-cross-repo-compile-check.lock.yml @@ -367,7 +367,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -476,7 +476,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1515,7 +1515,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-awf-spec-compiler-surfacing.lock.yml b/.github/workflows/daily-awf-spec-compiler-surfacing.lock.yml index 42123d1a2a7..08114509e7c 100644 --- a/.github/workflows/daily-awf-spec-compiler-surfacing.lock.yml +++ b/.github/workflows/daily-awf-spec-compiler-surfacing.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1405,7 +1405,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-byok-ollama-test.lock.yml b/.github/workflows/daily-byok-ollama-test.lock.yml index ad0dca756c5..b5d87334346 100644 --- a/.github/workflows/daily-byok-ollama-test.lock.yml +++ b/.github/workflows/daily-byok-ollama-test.lock.yml @@ -340,7 +340,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -443,7 +443,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: OLLAMA_INSTALL_SHA256: 25f64b810b947145095956533e1bdf56eacea2673c55a7e586be4515fc882c9f @@ -1392,7 +1392,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-cache-strategy-analyzer.lock.yml b/.github/workflows/daily-cache-strategy-analyzer.lock.yml index 168abfba8b2..778e40fce41 100644 --- a/.github/workflows/daily-cache-strategy-analyzer.lock.yml +++ b/.github/workflows/daily-cache-strategy-analyzer.lock.yml @@ -417,7 +417,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -557,7 +557,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1671,7 +1671,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-caveman-optimizer.lock.yml b/.github/workflows/daily-caveman-optimizer.lock.yml index b8022e253cc..d481ddd49f3 100644 --- a/.github/workflows/daily-caveman-optimizer.lock.yml +++ b/.github/workflows/daily-caveman-optimizer.lock.yml @@ -405,7 +405,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1574,7 +1574,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-choice-test.lock.yml b/.github/workflows/daily-choice-test.lock.yml index 7288d3104f4..43855770f7e 100644 --- a/.github/workflows/daily-choice-test.lock.yml +++ b/.github/workflows/daily-choice-test.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1437,7 +1437,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-cli-performance.lock.yml b/.github/workflows/daily-cli-performance.lock.yml index f7173fd244d..5ba12c69c89 100644 --- a/.github/workflows/daily-cli-performance.lock.yml +++ b/.github/workflows/daily-cli-performance.lock.yml @@ -407,7 +407,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -514,7 +514,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1731,7 +1731,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-cli-tools-tester.lock.yml b/.github/workflows/daily-cli-tools-tester.lock.yml index d943812559b..707c17ebab7 100644 --- a/.github/workflows/daily-cli-tools-tester.lock.yml +++ b/.github/workflows/daily-cli-tools-tester.lock.yml @@ -354,7 +354,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -490,7 +490,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1487,7 +1487,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-code-debt-aider.lock.yml b/.github/workflows/daily-code-debt-aider.lock.yml index 2664decaef4..ffde03fc6ed 100644 --- a/.github/workflows/daily-code-debt-aider.lock.yml +++ b/.github/workflows/daily-code-debt-aider.lock.yml @@ -344,7 +344,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -444,7 +444,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1362,7 +1362,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml index aa80e32f5dc..6844ba8b8bd 100644 --- a/.github/workflows/daily-code-metrics.lock.yml +++ b/.github/workflows/daily-code-metrics.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -500,7 +500,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Setup Python environment run: "# Create working directory for Python scripts\nmkdir -p /tmp/gh-aw/python\nmkdir -p /tmp/gh-aw/python/data\nmkdir -p /tmp/gh-aw/python/charts\nmkdir -p /tmp/gh-aw/python/artifacts\n\necho \"Python environment setup complete\"\necho \"Working directory: /tmp/gh-aw/python\"\necho \"Data directory: /tmp/gh-aw/python/data\"\necho \"Charts directory: /tmp/gh-aw/python/charts\"\necho \"Artifacts directory: /tmp/gh-aw/python/artifacts\"\n" @@ -1748,7 +1748,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-community-attribution.lock.yml b/.github/workflows/daily-community-attribution.lock.yml index 380919c3826..bfe44adb110 100644 --- a/.github/workflows/daily-community-attribution.lock.yml +++ b/.github/workflows/daily-community-attribution.lock.yml @@ -413,7 +413,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone wiki-memory branch (default) @@ -1618,7 +1618,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-compiler-quality.lock.yml b/.github/workflows/daily-compiler-quality.lock.yml index 29ffa59156c..6108c4f3425 100644 --- a/.github/workflows/daily-compiler-quality.lock.yml +++ b/.github/workflows/daily-compiler-quality.lock.yml @@ -409,7 +409,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1572,7 +1572,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-compiler-threat-spec-optimizer.lock.yml b/.github/workflows/daily-compiler-threat-spec-optimizer.lock.yml index 514ba9fbb13..82897b06153 100644 --- a/.github/workflows/daily-compiler-threat-spec-optimizer.lock.yml +++ b/.github/workflows/daily-compiler-threat-spec-optimizer.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -468,7 +468,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1509,7 +1509,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-credit-limit-test.lock.yml b/.github/workflows/daily-credit-limit-test.lock.yml index 628d356a0f1..857e51e0012 100644 --- a/.github/workflows/daily-credit-limit-test.lock.yml +++ b/.github/workflows/daily-credit-limit-test.lock.yml @@ -330,7 +330,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -432,7 +432,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1319,7 +1319,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-doc-healer.lock.yml b/.github/workflows/daily-doc-healer.lock.yml index 067f38037cb..2d4e7a5556b 100644 --- a/.github/workflows/daily-doc-healer.lock.yml +++ b/.github/workflows/daily-doc-healer.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1682,7 +1682,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml index 87319f68f59..f77ee01a5eb 100644 --- a/.github/workflows/daily-doc-updater.lock.yml +++ b/.github/workflows/daily-doc-updater.lock.yml @@ -409,7 +409,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -507,7 +507,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1482,7 +1482,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-elixir-credo-snippet-audit.lock.yml b/.github/workflows/daily-elixir-credo-snippet-audit.lock.yml index bcdf9c8b7dd..3e9a100ede0 100644 --- a/.github/workflows/daily-elixir-credo-snippet-audit.lock.yml +++ b/.github/workflows/daily-elixir-credo-snippet-audit.lock.yml @@ -350,7 +350,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -462,7 +462,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Install Credo tooling project run: "set -euo pipefail\nmkdir -p /tmp/gh-aw/agent/elixir-credo\ncd /tmp/gh-aw/agent/elixir-credo\nmix new credo_audit --sup\ncd credo_audit\ncat > mix.exs <<'EOF'\ndefmodule CredoAudit.MixProject do\n use Mix.Project\n\n def project do\n [\n app: :credo_audit,\n version: \"0.1.0\",\n elixir: \"~> 1.17\",\n start_permanent: Mix.env() == :prod,\n deps: deps()\n ]\n end\n\n def application do\n [\n extra_applications: [:logger]\n ]\n end\n\n defp deps do\n [\n {:credo, \"~> 1.7\", only: [:dev, :test], runtime: false}\n ]\n end\nend\nEOF\nMIX_ENV=dev mix deps.get\nMIX_ENV=dev mix deps.compile\nMIX_ENV=dev mix credo --version" @@ -1466,7 +1466,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-evals-report.lock.yml b/.github/workflows/daily-evals-report.lock.yml index f146d0bb2b4..a2d7115a892 100644 --- a/.github/workflows/daily-evals-report.lock.yml +++ b/.github/workflows/daily-evals-report.lock.yml @@ -370,7 +370,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -507,7 +507,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Restore shared agentic logs cache id: restore-agentic-logs-cache @@ -1579,7 +1579,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-experiment-report.lock.yml b/.github/workflows/daily-experiment-report.lock.yml index de2f0db72c0..df89b7e95e7 100644 --- a/.github/workflows/daily-experiment-report.lock.yml +++ b/.github/workflows/daily-experiment-report.lock.yml @@ -355,7 +355,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1529,7 +1529,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-fact.lock.yml b/.github/workflows/daily-fact.lock.yml index b2b804c1a0e..7f6f96dbf73 100644 --- a/.github/workflows/daily-fact.lock.yml +++ b/.github/workflows/daily-fact.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -537,7 +537,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1596,7 +1596,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml index 755897d202c..b35146b8faa 100644 --- a/.github/workflows/daily-file-diet.lock.yml +++ b/.github/workflows/daily-file-diet.lock.yml @@ -372,7 +372,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -479,7 +479,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1489,7 +1489,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml index fdc919c0bfd..099460a9abd 100644 --- a/.github/workflows/daily-firewall-report.lock.yml +++ b/.github/workflows/daily-firewall-report.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -500,7 +500,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1541,7 +1541,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-formal-spec-verifier.lock.yml b/.github/workflows/daily-formal-spec-verifier.lock.yml index bebc5624e17..d2e53d696a0 100644 --- a/.github/workflows/daily-formal-spec-verifier.lock.yml +++ b/.github/workflows/daily-formal-spec-verifier.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1494,7 +1494,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-function-namer.lock.yml b/.github/workflows/daily-function-namer.lock.yml index 8ab492a1da1..642764e1115 100644 --- a/.github/workflows/daily-function-namer.lock.yml +++ b/.github/workflows/daily-function-namer.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1436,7 +1436,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-geo-optimizer.lock.yml b/.github/workflows/daily-geo-optimizer.lock.yml index e8947ef1273..05d546d6449 100644 --- a/.github/workflows/daily-geo-optimizer.lock.yml +++ b/.github/workflows/daily-geo-optimizer.lock.yml @@ -350,7 +350,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download geo-optimizer results uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1440,7 +1440,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-github-docs-seo-optimizer.lock.yml b/.github/workflows/daily-github-docs-seo-optimizer.lock.yml index 130acdb7405..219f0b35045 100644 --- a/.github/workflows/daily-github-docs-seo-optimizer.lock.yml +++ b/.github/workflows/daily-github-docs-seo-optimizer.lock.yml @@ -303,7 +303,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -410,7 +410,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1277,7 +1277,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-go-test-parallelizer.lock.yml b/.github/workflows/daily-go-test-parallelizer.lock.yml index 892d506cf6c..eb07ef08897 100644 --- a/.github/workflows/daily-go-test-parallelizer.lock.yml +++ b/.github/workflows/daily-go-test-parallelizer.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1463,7 +1463,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-go-test-stubs-aider.lock.yml b/.github/workflows/daily-go-test-stubs-aider.lock.yml index 15884cdd170..cceef07aca5 100644 --- a/.github/workflows/daily-go-test-stubs-aider.lock.yml +++ b/.github/workflows/daily-go-test-stubs-aider.lock.yml @@ -344,7 +344,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -444,7 +444,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1362,7 +1362,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-graft-intelligence.lock.yml b/.github/workflows/daily-graft-intelligence.lock.yml index fb3a71e1d78..a8429e89ff9 100644 --- a/.github/workflows/daily-graft-intelligence.lock.yml +++ b/.github/workflows/daily-graft-intelligence.lock.yml @@ -334,7 +334,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -443,7 +443,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: GRAFT_DIR: /tmp/gh-aw/graft @@ -1422,7 +1422,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-hippo-learn.lock.yml b/.github/workflows/daily-hippo-learn.lock.yml index 6ce3451496b..8deb43d9de8 100644 --- a/.github/workflows/daily-hippo-learn.lock.yml +++ b/.github/workflows/daily-hippo-learn.lock.yml @@ -351,7 +351,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1521,7 +1521,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml index cbff0684e7b..f48e8d75410 100644 --- a/.github/workflows/daily-issues-report.lock.yml +++ b/.github/workflows/daily-issues-report.lock.yml @@ -414,7 +414,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -547,7 +547,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1699,7 +1699,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml index 0d3941de52f..219e60b59aa 100644 --- a/.github/workflows/daily-malicious-code-scan.lock.yml +++ b/.github/workflows/daily-malicious-code-scan.lock.yml @@ -345,7 +345,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/daily-max-ai-credits-test.lock.yml b/.github/workflows/daily-max-ai-credits-test.lock.yml index d1544e48a4b..a3706a4beb2 100644 --- a/.github/workflows/daily-max-ai-credits-test.lock.yml +++ b/.github/workflows/daily-max-ai-credits-test.lock.yml @@ -270,7 +270,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -372,7 +372,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1212,7 +1212,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml index 70bb647532b..4a95e63faf6 100644 --- a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml +++ b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1532,7 +1532,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-model-inventory.lock.yml b/.github/workflows/daily-model-inventory.lock.yml index 6ae83e22b81..25ff4b51461 100644 --- a/.github/workflows/daily-model-inventory.lock.yml +++ b/.github/workflows/daily-model-inventory.lock.yml @@ -343,7 +343,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -456,7 +456,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download all model artifacts uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1713,7 +1713,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-model-resolution.lock.yml b/.github/workflows/daily-model-resolution.lock.yml index d67f114cfc3..9791b5a2c7c 100644 --- a/.github/workflows/daily-model-resolution.lock.yml +++ b/.github/workflows/daily-model-resolution.lock.yml @@ -354,7 +354,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -490,7 +490,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1454,7 +1454,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml index 52f105dcb50..14c09100db0 100644 --- a/.github/workflows/daily-multi-device-docs-tester.lock.yml +++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml @@ -362,7 +362,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1433,7 +1433,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml index 505027b264a..0e5658bbf75 100644 --- a/.github/workflows/daily-news.lock.yml +++ b/.github/workflows/daily-news.lock.yml @@ -415,7 +415,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -524,7 +524,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1623,7 +1623,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-observability-report.lock.yml b/.github/workflows/daily-observability-report.lock.yml index 05e230ac4f4..c76bc649ff1 100644 --- a/.github/workflows/daily-observability-report.lock.yml +++ b/.github/workflows/daily-observability-report.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -497,7 +497,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1488,7 +1488,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml index 4c641b41dff..9302623ae70 100644 --- a/.github/workflows/daily-performance-summary.lock.yml +++ b/.github/workflows/daily-performance-summary.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -479,7 +479,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1989,7 +1989,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-pr-review-cursor.lock.yml b/.github/workflows/daily-pr-review-cursor.lock.yml index e37dc58314c..fa2f9cca082 100644 --- a/.github/workflows/daily-pr-review-cursor.lock.yml +++ b/.github/workflows/daily-pr-review-cursor.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -453,7 +453,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1385,7 +1385,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-regression-audit-kiro.lock.yml b/.github/workflows/daily-regression-audit-kiro.lock.yml index f0f35936567..ea22350c7dd 100644 --- a/.github/workflows/daily-regression-audit-kiro.lock.yml +++ b/.github/workflows/daily-regression-audit-kiro.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -454,7 +454,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1386,7 +1386,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-regulatory.lock.yml b/.github/workflows/daily-regulatory.lock.yml index 78d3e744bb7..1edf4542d83 100644 --- a/.github/workflows/daily-regulatory.lock.yml +++ b/.github/workflows/daily-regulatory.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -460,7 +460,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1885,7 +1885,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-reliability-review.lock.yml b/.github/workflows/daily-reliability-review.lock.yml index 6093454428b..4896b579d13 100644 --- a/.github/workflows/daily-reliability-review.lock.yml +++ b/.github/workflows/daily-reliability-review.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1446,7 +1446,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-rendering-scripts-verifier.lock.yml b/.github/workflows/daily-rendering-scripts-verifier.lock.yml index a4146866774..b0779e98989 100644 --- a/.github/workflows/daily-rendering-scripts-verifier.lock.yml +++ b/.github/workflows/daily-rendering-scripts-verifier.lock.yml @@ -376,7 +376,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -514,7 +514,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1656,7 +1656,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml index e13a81f7d03..6bfacf3ab7f 100644 --- a/.github/workflows/daily-repo-chronicle.lock.yml +++ b/.github/workflows/daily-repo-chronicle.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1465,7 +1465,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-safe-output-integrator.lock.yml b/.github/workflows/daily-safe-output-integrator.lock.yml index 4f0a78d86c2..37fc8dc0f71 100644 --- a/.github/workflows/daily-safe-output-integrator.lock.yml +++ b/.github/workflows/daily-safe-output-integrator.lock.yml @@ -345,7 +345,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1430,7 +1430,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-safe-output-optimizer.lock.yml b/.github/workflows/daily-safe-output-optimizer.lock.yml index df3e8c7ee37..3ddf60a150c 100644 --- a/.github/workflows/daily-safe-output-optimizer.lock.yml +++ b/.github/workflows/daily-safe-output-optimizer.lock.yml @@ -414,7 +414,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -552,7 +552,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1667,7 +1667,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-safe-outputs-conformance.lock.yml b/.github/workflows/daily-safe-outputs-conformance.lock.yml index 06e90c227b3..83403a01aa1 100644 --- a/.github/workflows/daily-safe-outputs-conformance.lock.yml +++ b/.github/workflows/daily-safe-outputs-conformance.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -457,7 +457,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1449,7 +1449,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-safeoutputs-git-simulator.lock.yml b/.github/workflows/daily-safeoutputs-git-simulator.lock.yml index 468cac4dc54..8c759d6bda1 100644 --- a/.github/workflows/daily-safeoutputs-git-simulator.lock.yml +++ b/.github/workflows/daily-safeoutputs-git-simulator.lock.yml @@ -344,7 +344,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -454,7 +454,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1521,7 +1521,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-schema-audit-cursor.lock.yml b/.github/workflows/daily-schema-audit-cursor.lock.yml index 36034ec0382..e67e28d6e74 100644 --- a/.github/workflows/daily-schema-audit-cursor.lock.yml +++ b/.github/workflows/daily-schema-audit-cursor.lock.yml @@ -347,7 +347,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -452,7 +452,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1384,7 +1384,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-secrets-analysis.lock.yml b/.github/workflows/daily-secrets-analysis.lock.yml index a9273272057..69845c77f7f 100644 --- a/.github/workflows/daily-secrets-analysis.lock.yml +++ b/.github/workflows/daily-secrets-analysis.lock.yml @@ -343,7 +343,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -450,7 +450,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1365,7 +1365,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-security-observability.lock.yml b/.github/workflows/daily-security-observability.lock.yml index edf36092b3b..0d5d516b4ad 100644 --- a/.github/workflows/daily-security-observability.lock.yml +++ b/.github/workflows/daily-security-observability.lock.yml @@ -375,7 +375,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1605,7 +1605,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-security-red-team.lock.yml b/.github/workflows/daily-security-red-team.lock.yml index 870ec27fc1b..7b6ccc1fc0b 100644 --- a/.github/workflows/daily-security-red-team.lock.yml +++ b/.github/workflows/daily-security-red-team.lock.yml @@ -391,7 +391,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -487,7 +487,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1512,7 +1512,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-semgrep-scan.lock.yml b/.github/workflows/daily-semgrep-scan.lock.yml index 6a2ff6314cc..e556da89574 100644 --- a/.github/workflows/daily-semgrep-scan.lock.yml +++ b/.github/workflows/daily-semgrep-scan.lock.yml @@ -380,7 +380,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -484,7 +484,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1402,7 +1402,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-spdd-spec-planner.lock.yml b/.github/workflows/daily-spdd-spec-planner.lock.yml index 567190442b5..3dd063542ac 100644 --- a/.github/workflows/daily-spdd-spec-planner.lock.yml +++ b/.github/workflows/daily-spdd-spec-planner.lock.yml @@ -351,7 +351,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1454,7 +1454,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-spec-coverage-kiro.lock.yml b/.github/workflows/daily-spec-coverage-kiro.lock.yml index 005fdec322f..8b46092febb 100644 --- a/.github/workflows/daily-spec-coverage-kiro.lock.yml +++ b/.github/workflows/daily-spec-coverage-kiro.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -453,7 +453,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1384,7 +1384,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-spending-forecast.lock.yml b/.github/workflows/daily-spending-forecast.lock.yml index dc4013f8cf1..ca4d4249ab7 100644 --- a/.github/workflows/daily-spending-forecast.lock.yml +++ b/.github/workflows/daily-spending-forecast.lock.yml @@ -337,7 +337,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1536,7 +1536,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-squid-image-scan.lock.yml b/.github/workflows/daily-squid-image-scan.lock.yml index bc954d0f755..76f8519dda4 100644 --- a/.github/workflows/daily-squid-image-scan.lock.yml +++ b/.github/workflows/daily-squid-image-scan.lock.yml @@ -318,7 +318,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -422,7 +422,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Build gh-aw from source run: | @@ -1487,7 +1487,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-syntax-error-quality.lock.yml b/.github/workflows/daily-syntax-error-quality.lock.yml index f2db67553a1..c06fccb2244 100644 --- a/.github/workflows/daily-syntax-error-quality.lock.yml +++ b/.github/workflows/daily-syntax-error-quality.lock.yml @@ -342,7 +342,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Find candidate workflows run: "mkdir -p /tmp/gh-aw/agent\nmkdir -p /tmp/gh-aw/agent/candidates\nfind .github/workflows -name '*.md' -type f ! -name 'daily-*.md' ! -name '*-test.md' \\\n | shuf -n 5 \\\n > /tmp/gh-aw/agent/candidates.txt\nwhile IFS= read -r workflow; do\n cp \"$workflow\" /tmp/gh-aw/agent/candidates/\ndone < /tmp/gh-aw/agent/candidates.txt\necho \"Pre-selected $(wc -l < /tmp/gh-aw/agent/candidates.txt) candidate workflows\"\n" @@ -1384,7 +1384,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-team-evolution-insights.lock.yml b/.github/workflows/daily-team-evolution-insights.lock.yml index aeea464c841..54ad816577e 100644 --- a/.github/workflows/daily-team-evolution-insights.lock.yml +++ b/.github/workflows/daily-team-evolution-insights.lock.yml @@ -350,7 +350,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1575,7 +1575,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml index 4c17cbb4860..99bfa3dfddf 100644 --- a/.github/workflows/daily-team-status.lock.yml +++ b/.github/workflows/daily-team-status.lock.yml @@ -332,7 +332,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -436,7 +436,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1361,7 +1361,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-testify-uber-super-expert.lock.yml b/.github/workflows/daily-testify-uber-super-expert.lock.yml index f0cdfb92af0..68122047247 100644 --- a/.github/workflows/daily-testify-uber-super-expert.lock.yml +++ b/.github/workflows/daily-testify-uber-super-expert.lock.yml @@ -374,7 +374,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -480,7 +480,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1503,7 +1503,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-token-consumption-report.lock.yml b/.github/workflows/daily-token-consumption-report.lock.yml index 7821d22a797..9a2984d0d90 100644 --- a/.github/workflows/daily-token-consumption-report.lock.yml +++ b/.github/workflows/daily-token-consumption-report.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -445,7 +445,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1627,7 +1627,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-vulnhunter-scan.lock.yml b/.github/workflows/daily-vulnhunter-scan.lock.yml index 574428971eb..22df9e7d3b8 100644 --- a/.github/workflows/daily-vulnhunter-scan.lock.yml +++ b/.github/workflows/daily-vulnhunter-scan.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -456,7 +456,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download VulnHunter bundle artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1424,7 +1424,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-windows-terminal-integration-builder.lock.yml b/.github/workflows/daily-windows-terminal-integration-builder.lock.yml index f93f9182ccc..497422a62dd 100644 --- a/.github/workflows/daily-windows-terminal-integration-builder.lock.yml +++ b/.github/workflows/daily-windows-terminal-integration-builder.lock.yml @@ -332,7 +332,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -436,7 +436,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1331,7 +1331,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml index 01606130272..70d00838384 100644 --- a/.github/workflows/daily-workflow-updater.lock.yml +++ b/.github/workflows/daily-workflow-updater.lock.yml @@ -339,7 +339,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -445,7 +445,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1393,7 +1393,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/daily-yamllint-fixer.lock.yml b/.github/workflows/daily-yamllint-fixer.lock.yml index 03f59f4bab6..125a1ba3bd0 100644 --- a/.github/workflows/daily-yamllint-fixer.lock.yml +++ b/.github/workflows/daily-yamllint-fixer.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -464,7 +464,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download yamllint results artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1456,7 +1456,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dataflow-pr-discussion-dataset.lock.yml b/.github/workflows/dataflow-pr-discussion-dataset.lock.yml index 425b0519990..c49b8b6164a 100644 --- a/.github/workflows/dataflow-pr-discussion-dataset.lock.yml +++ b/.github/workflows/dataflow-pr-discussion-dataset.lock.yml @@ -407,7 +407,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -538,7 +538,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1816,7 +1816,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dead-code-remover.lock.yml b/.github/workflows/dead-code-remover.lock.yml index ffbaaca5ebd..a4ef54f83c9 100644 --- a/.github/workflows/dead-code-remover.lock.yml +++ b/.github/workflows/dead-code-remover.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -478,7 +478,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1449,7 +1449,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml index 5f174c07159..00d783aaa14 100644 --- a/.github/workflows/deep-report.lock.yml +++ b/.github/workflows/deep-report.lock.yml @@ -425,7 +425,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -571,7 +571,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -2279,7 +2279,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/deepsec-security-scan.lock.yml b/.github/workflows/deepsec-security-scan.lock.yml index f08972fbd97..756302b143f 100644 --- a/.github/workflows/deepsec-security-scan.lock.yml +++ b/.github/workflows/deepsec-security-scan.lock.yml @@ -383,7 +383,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -481,7 +481,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Checkout repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -1459,7 +1459,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/delight.lock.yml b/.github/workflows/delight.lock.yml index d4a7243cafd..4372d1043f3 100644 --- a/.github/workflows/delight.lock.yml +++ b/.github/workflows/delight.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1493,7 +1493,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dependabot-burner.lock.yml b/.github/workflows/dependabot-burner.lock.yml index 27eed64dceb..559027141ca 100644 --- a/.github/workflows/dependabot-burner.lock.yml +++ b/.github/workflows/dependabot-burner.lock.yml @@ -421,7 +421,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -526,7 +526,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: BURN_OBJECTIVE: ${{ inputs.objective }} @@ -1573,7 +1573,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml index fb76a1545d9..67daa1ae74d 100644 --- a/.github/workflows/dependabot-go-checker.lock.yml +++ b/.github/workflows/dependabot-go-checker.lock.yml @@ -388,7 +388,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -496,7 +496,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1461,7 +1461,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/deployment-incident-monitor.lock.yml b/.github/workflows/deployment-incident-monitor.lock.yml index 635f469eca4..a3b486afd14 100644 --- a/.github/workflows/deployment-incident-monitor.lock.yml +++ b/.github/workflows/deployment-incident-monitor.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -468,7 +468,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1386,7 +1386,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/design-decision-gate.lock.yml b/.github/workflows/design-decision-gate.lock.yml index e1b7a171596..d04cb0c0702 100644 --- a/.github/workflows/design-decision-gate.lock.yml +++ b/.github/workflows/design-decision-gate.lock.yml @@ -443,7 +443,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -556,7 +556,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: EXPR_GITHUB_EVENT_NAME: ${{ github.event_name }} @@ -1606,7 +1606,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/designer-drift-audit.lock.yml b/.github/workflows/designer-drift-audit.lock.yml index 1f40356d433..18f5d86011f 100644 --- a/.github/workflows/designer-drift-audit.lock.yml +++ b/.github/workflows/designer-drift-audit.lock.yml @@ -326,7 +326,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -429,7 +429,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Extract reference doc metadata run: "mkdir -p /tmp/gh-aw/data\n\n# Core reference docs the designer depends on\nREFS=(\n \".github/aw/syntax.md\"\n \".github/aw/safe-outputs.md\"\n \".github/aw/network.md\"\n \".github/aw/patterns.md\"\n \".github/aw/subagents.md\"\n \".github/aw/token-optimization.md\"\n \".github/aw/triggers.md\"\n \".github/aw/create-agentic-workflow.md\"\n)\n\n# Extract key sections from each reference doc:\n# - H2/H3 headings (structural outline)\n# - YAML frontmatter field names\n# - Table rows containing mapping keywords\nfor ref in \"${REFS[@]}\"; do\n if [ -f \"$ref\" ]; then\n basename=$(basename \"$ref\" .md)\n {\n echo \"=== $ref ===\"\n # Headings\n grep -n '^##' \"$ref\" | head -50\n echo \"---\"\n # Frontmatter keys (between --- delimiters)\n sed -n '/^---$/,/^---$/p' \"$ref\" | grep -E '^\\w+:' | head -30\n echo \"---\"\n # Table rows with config keywords\n grep -E '^\\|.*\\|' \"$ref\" | grep -ivE '^\\|[\\s-]+\\|' | head -80\n echo \"===\"\n } > \"/tmp/gh-aw/data/ref-${basename}.txt\"\n fi\ndone\n" @@ -1319,7 +1319,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/detection-analysis-report.lock.yml b/.github/workflows/detection-analysis-report.lock.yml index 3abdcdda2e8..a54e6297265 100644 --- a/.github/workflows/detection-analysis-report.lock.yml +++ b/.github/workflows/detection-analysis-report.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -510,7 +510,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1614,7 +1614,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml index 53cc200ddf0..1fc0397649b 100644 --- a/.github/workflows/dev-hawk.lock.yml +++ b/.github/workflows/dev-hawk.lock.yml @@ -384,7 +384,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -520,7 +520,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1514,7 +1514,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml index aebcf943541..2c78bbc07bc 100644 --- a/.github/workflows/dev.lock.yml +++ b/.github/workflows/dev.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -514,7 +514,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1466,7 +1466,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml index 78b973dba78..28226781b0f 100644 --- a/.github/workflows/developer-docs-consolidator.lock.yml +++ b/.github/workflows/developer-docs-consolidator.lock.yml @@ -378,7 +378,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -486,7 +486,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1648,7 +1648,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml index 2818b91dfec..5e245496a40 100644 --- a/.github/workflows/dictation-prompt.lock.yml +++ b/.github/workflows/dictation-prompt.lock.yml @@ -340,7 +340,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -446,7 +446,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1388,7 +1388,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml index 4a675d87300..c20c3afbbf9 100644 --- a/.github/workflows/docs-noob-tester.lock.yml +++ b/.github/workflows/docs-noob-tester.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -460,7 +460,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1423,7 +1423,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/draft-pr-cleanup.lock.yml b/.github/workflows/draft-pr-cleanup.lock.yml index 26971c99e2a..199611e41f7 100644 --- a/.github/workflows/draft-pr-cleanup.lock.yml +++ b/.github/workflows/draft-pr-cleanup.lock.yml @@ -341,7 +341,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -446,7 +446,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1423,7 +1423,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml index f228e10f75f..463679c6849 100644 --- a/.github/workflows/duplicate-code-detector.lock.yml +++ b/.github/workflows/duplicate-code-detector.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1468,7 +1468,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/eslint-miner.lock.yml b/.github/workflows/eslint-miner.lock.yml index 135b80242f3..b93953ad92a 100644 --- a/.github/workflows/eslint-miner.lock.yml +++ b/.github/workflows/eslint-miner.lock.yml @@ -330,7 +330,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -443,7 +443,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1418,7 +1418,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/eslint-monster.lock.yml b/.github/workflows/eslint-monster.lock.yml index fc28af490ad..b9d71889287 100644 --- a/.github/workflows/eslint-monster.lock.yml +++ b/.github/workflows/eslint-monster.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -450,7 +450,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - id: eslint_scan name: Run ESLint factory pre-check @@ -1491,7 +1491,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/eslint-refiner.lock.yml b/.github/workflows/eslint-refiner.lock.yml index 7f91d58bf2c..f640d3cef57 100644 --- a/.github/workflows/eslint-refiner.lock.yml +++ b/.github/workflows/eslint-refiner.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1519,7 +1519,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/evoskill-evolver.lock.yml b/.github/workflows/evoskill-evolver.lock.yml index 1e41e75a549..64d2b138dbd 100644 --- a/.github/workflows/evoskill-evolver.lock.yml +++ b/.github/workflows/evoskill-evolver.lock.yml @@ -331,7 +331,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -438,7 +438,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1433,7 +1433,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/example-failure-category-filter.lock.yml b/.github/workflows/example-failure-category-filter.lock.yml index 6bca92f4801..b6a0d9d9c7a 100644 --- a/.github/workflows/example-failure-category-filter.lock.yml +++ b/.github/workflows/example-failure-category-filter.lock.yml @@ -325,7 +325,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -423,7 +423,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1307,7 +1307,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml index 7e07c11c835..096602370a6 100644 --- a/.github/workflows/example-permissions-warning.lock.yml +++ b/.github/workflows/example-permissions-warning.lock.yml @@ -346,7 +346,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -448,7 +448,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml index 6d6eec59f86..3b75fe0ded5 100644 --- a/.github/workflows/example-workflow-analyzer.lock.yml +++ b/.github/workflows/example-workflow-analyzer.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -492,7 +492,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1479,7 +1479,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml index 6c5ca03285f..227dceb9d74 100644 --- a/.github/workflows/firewall-escape.lock.yml +++ b/.github/workflows/firewall-escape.lock.yml @@ -388,7 +388,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -495,7 +495,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1477,7 +1477,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml index 6146f522219..9019fb84c74 100644 --- a/.github/workflows/firewall.lock.yml +++ b/.github/workflows/firewall.lock.yml @@ -343,7 +343,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -445,7 +445,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/functional-pragmatist.lock.yml b/.github/workflows/functional-pragmatist.lock.yml index 68ec24eb02a..da5f13cde58 100644 --- a/.github/workflows/functional-pragmatist.lock.yml +++ b/.github/workflows/functional-pragmatist.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -454,7 +454,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1397,7 +1397,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml index 33295b6c66b..dac8902dd03 100644 --- a/.github/workflows/github-mcp-structural-analysis.lock.yml +++ b/.github/workflows/github-mcp-structural-analysis.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -482,7 +482,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1778,7 +1778,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml index e2b2913596d..8f74732bd7a 100644 --- a/.github/workflows/github-mcp-tools-report.lock.yml +++ b/.github/workflows/github-mcp-tools-report.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -467,7 +467,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1507,7 +1507,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/github-remote-mcp-auth-test.lock.yml b/.github/workflows/github-remote-mcp-auth-test.lock.yml index 224a3c273cd..cc253609c07 100644 --- a/.github/workflows/github-remote-mcp-auth-test.lock.yml +++ b/.github/workflows/github-remote-mcp-auth-test.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -458,7 +458,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1359,7 +1359,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml index 60bb65c2c45..f8f5fcfc7e5 100644 --- a/.github/workflows/glossary-maintainer.lock.yml +++ b/.github/workflows/glossary-maintainer.lock.yml @@ -380,7 +380,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -499,7 +499,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1555,7 +1555,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml index 04c70afcaa9..0da1dcb6a89 100644 --- a/.github/workflows/go-fan.lock.yml +++ b/.github/workflows/go-fan.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -477,7 +477,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1539,7 +1539,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml index fb0f1da19b3..3a24aeb1c79 100644 --- a/.github/workflows/go-logger.lock.yml +++ b/.github/workflows/go-logger.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -475,7 +475,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1543,7 +1543,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml index d89e701f937..5768c2d20bc 100644 --- a/.github/workflows/go-pattern-detector.lock.yml +++ b/.github/workflows/go-pattern-detector.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1475,7 +1475,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/gpclean.lock.yml b/.github/workflows/gpclean.lock.yml index 2d5d9830f62..74f82d3632b 100644 --- a/.github/workflows/gpclean.lock.yml +++ b/.github/workflows/gpclean.lock.yml @@ -398,7 +398,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -505,7 +505,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1462,7 +1462,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml index a52bd6c0751..61db1da0ddb 100644 --- a/.github/workflows/grumpy-reviewer.lock.yml +++ b/.github/workflows/grumpy-reviewer.lock.yml @@ -415,7 +415,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1560,7 +1560,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/hippo-embed.lock.yml b/.github/workflows/hippo-embed.lock.yml index ed69c0ae9b4..4e00f618c0b 100644 --- a/.github/workflows/hippo-embed.lock.yml +++ b/.github/workflows/hippo-embed.lock.yml @@ -349,7 +349,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml index 6df41cba227..576cc1504cb 100644 --- a/.github/workflows/hourly-ci-cleaner.lock.yml +++ b/.github/workflows/hourly-ci-cleaner.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -492,7 +492,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Install Make run: | @@ -1550,7 +1550,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/impeccable-skills-reviewer.lock.yml b/.github/workflows/impeccable-skills-reviewer.lock.yml index a7294823973..568f0029301 100644 --- a/.github/workflows/impeccable-skills-reviewer.lock.yml +++ b/.github/workflows/impeccable-skills-reviewer.lock.yml @@ -389,7 +389,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -491,7 +491,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Cache (pr-prefetch-${{ github.event.pull_request.head.sha }}) @@ -1541,7 +1541,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml index 94e7390e79c..6f02ee6bc96 100644 --- a/.github/workflows/instructions-janitor.lock.yml +++ b/.github/workflows/instructions-janitor.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1506,7 +1506,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml index f29bbf6dee7..5e66986f9b1 100644 --- a/.github/workflows/issue-arborist.lock.yml +++ b/.github/workflows/issue-arborist.lock.yml @@ -393,7 +393,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Fetch issues run: |- @@ -1544,7 +1544,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml index 53fc26ea016..8e0b2306cf9 100644 --- a/.github/workflows/issue-monster.lock.yml +++ b/.github/workflows/issue-monster.lock.yml @@ -826,7 +826,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -919,7 +919,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1843,7 +1843,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index 3e6642af293..da7264595dc 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1561,7 +1561,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/jsweep.lock.yml b/.github/workflows/jsweep.lock.yml index f4c50d84b48..d7859f9ac30 100644 --- a/.github/workflows/jsweep.lock.yml +++ b/.github/workflows/jsweep.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -468,7 +468,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1452,7 +1452,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index c9bbdc2c71a..a80ad23d9e8 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -350,7 +350,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Save layout spec data to cache @@ -1439,7 +1439,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/lint-monster.lock.yml b/.github/workflows/lint-monster.lock.yml index ed102c23075..24acfa0eb34 100644 --- a/.github/workflows/lint-monster.lock.yml +++ b/.github/workflows/lint-monster.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -444,7 +444,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - id: lint_scan name: Run custom lint pre-check @@ -1473,7 +1473,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/linter-miner.lock.yml b/.github/workflows/linter-miner.lock.yml index b53e28aafa9..6c8d02bb8a1 100644 --- a/.github/workflows/linter-miner.lock.yml +++ b/.github/workflows/linter-miner.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -468,7 +468,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1482,7 +1482,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml index 71a8af82c81..0da1aa82fee 100644 --- a/.github/workflows/lockfile-stats.lock.yml +++ b/.github/workflows/lockfile-stats.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1439,7 +1439,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/mattpocock-skills-reviewer.lock.yml b/.github/workflows/mattpocock-skills-reviewer.lock.yml index 1a160fb8596..b960703c561 100644 --- a/.github/workflows/mattpocock-skills-reviewer.lock.yml +++ b/.github/workflows/mattpocock-skills-reviewer.lock.yml @@ -508,7 +508,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -610,7 +610,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Cache (pr-prefetch-${{ github.event.pull_request.head.sha || github.event.issue.number }}) @@ -1684,7 +1684,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml index c9ca2662c54..27cd8bbda6f 100644 --- a/.github/workflows/mcp-inspector.lock.yml +++ b/.github/workflows/mcp-inspector.lock.yml @@ -393,7 +393,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -536,7 +536,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1747,7 +1747,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml index 6bbbf93e733..4d496b1dba9 100644 --- a/.github/workflows/mergefest.lock.yml +++ b/.github/workflows/mergefest.lock.yml @@ -404,7 +404,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -506,7 +506,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials run: "git config user.name \"github-actions[bot]\"\ngit config user.email \"github-actions[bot]@users.noreply.github.com\"\n\n# Create .gitignore to exclude workflow YAML files\ncat > /tmp/gh-aw/agent/merge-gitignore << 'EOF'\n# Exclude all .yml files in .github/workflows/\n.github/workflows/*.yml\nEOF" @@ -1465,7 +1465,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/metrics-collector.lock.yml b/.github/workflows/metrics-collector.lock.yml index 922295a285b..fe7805628bc 100644 --- a/.github/workflows/metrics-collector.lock.yml +++ b/.github/workflows/metrics-collector.lock.yml @@ -365,7 +365,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1488,7 +1488,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/necromancer.lock.yml b/.github/workflows/necromancer.lock.yml index 2b3f895dcdc..3969ad9ee45 100644 --- a/.github/workflows/necromancer.lock.yml +++ b/.github/workflows/necromancer.lock.yml @@ -429,7 +429,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -531,7 +531,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1515,7 +1515,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml index 1035338abbf..6e23c65578b 100644 --- a/.github/workflows/notion-issue-summary.lock.yml +++ b/.github/workflows/notion-issue-summary.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/.github/workflows/objective-impact-report.lock.yml b/.github/workflows/objective-impact-report.lock.yml index 8dbee702849..e19aade5a0d 100644 --- a/.github/workflows/objective-impact-report.lock.yml +++ b/.github/workflows/objective-impact-report.lock.yml @@ -331,7 +331,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -432,7 +432,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Save objective impact report dataset cache @@ -1413,7 +1413,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml index 45b75e71d91..d5379406a23 100644 --- a/.github/workflows/org-health-report.lock.yml +++ b/.github/workflows/org-health-report.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -476,7 +476,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1491,7 +1491,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/outcome-collector.lock.yml b/.github/workflows/outcome-collector.lock.yml index 8bfe5f1da4f..029603b6546 100644 --- a/.github/workflows/outcome-collector.lock.yml +++ b/.github/workflows/outcome-collector.lock.yml @@ -351,7 +351,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -460,7 +460,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1418,7 +1418,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml index d296902f82a..d21b225169a 100644 --- a/.github/workflows/pdf-summary.lock.yml +++ b/.github/workflows/pdf-summary.lock.yml @@ -433,7 +433,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -538,7 +538,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1540,7 +1540,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml index 62db2711377..948e6ec5688 100644 --- a/.github/workflows/plan.lock.yml +++ b/.github/workflows/plan.lock.yml @@ -452,7 +452,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -555,7 +555,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1553,7 +1553,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml index 5b819fe9497..8446992ccd2 100644 --- a/.github/workflows/poem-bot.lock.yml +++ b/.github/workflows/poem-bot.lock.yml @@ -425,7 +425,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1789,7 +1789,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ponytail-reviewer.lock.yml b/.github/workflows/ponytail-reviewer.lock.yml index b57e738a923..1a9d617ce58 100644 --- a/.github/workflows/ponytail-reviewer.lock.yml +++ b/.github/workflows/ponytail-reviewer.lock.yml @@ -443,7 +443,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -545,7 +545,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache configuration from frontmatter processed below - name: Cache (pr-prefetch-${{ github.event.pull_request.head.sha || github.event.issue.number }}) @@ -1574,7 +1574,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml index 6a8b73f8bc1..ea8a9d21f14 100644 --- a/.github/workflows/portfolio-analyst.lock.yml +++ b/.github/workflows/portfolio-analyst.lock.yml @@ -354,7 +354,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1593,7 +1593,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-code-quality-reviewer.lock.yml b/.github/workflows/pr-code-quality-reviewer.lock.yml index fad3f67b33b..4398536c762 100644 --- a/.github/workflows/pr-code-quality-reviewer.lock.yml +++ b/.github/workflows/pr-code-quality-reviewer.lock.yml @@ -420,7 +420,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -1542,7 +1542,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-description-caveman.lock.yml b/.github/workflows/pr-description-caveman.lock.yml index 6ac28ef9a29..0e53496d110 100644 --- a/.github/workflows/pr-description-caveman.lock.yml +++ b/.github/workflows/pr-description-caveman.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -458,7 +458,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: BASE_SHA: ${{ github.event.pull_request.base.sha }} @@ -1381,7 +1381,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml index cd06c253787..438e7f8b04a 100644 --- a/.github/workflows/pr-nitpick-reviewer.lock.yml +++ b/.github/workflows/pr-nitpick-reviewer.lock.yml @@ -414,7 +414,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1566,7 +1566,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-sous-chef.lock.yml b/.github/workflows/pr-sous-chef.lock.yml index a2f01e19b0c..e7679746905 100644 --- a/.github/workflows/pr-sous-chef.lock.yml +++ b/.github/workflows/pr-sous-chef.lock.yml @@ -400,7 +400,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -526,7 +526,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Fetch open non-draft PR queue id: fetch-prs @@ -1860,7 +1860,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/pr-triage-agent.lock.yml b/.github/workflows/pr-triage-agent.lock.yml index ebfc7d9af36..aaaa98291bb 100644 --- a/.github/workflows/pr-triage-agent.lock.yml +++ b/.github/workflows/pr-triage-agent.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -473,7 +473,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1873,7 +1873,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml index 26e6f30fc1a..abd40786cb4 100644 --- a/.github/workflows/prompt-clustering-analysis.lock.yml +++ b/.github/workflows/prompt-clustering-analysis.lock.yml @@ -377,7 +377,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1623,7 +1623,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/purelock.lock.yml b/.github/workflows/purelock.lock.yml index 3fd728a3dd3..1450c9e13eb 100644 --- a/.github/workflows/purelock.lock.yml +++ b/.github/workflows/purelock.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -478,7 +478,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1521,7 +1521,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml index 784552670c9..fe7b8ad558a 100644 --- a/.github/workflows/python-data-charts.lock.yml +++ b/.github/workflows/python-data-charts.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1561,7 +1561,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml index 77500bb407c..7a35d89da81 100644 --- a/.github/workflows/q.lock.yml +++ b/.github/workflows/q.lock.yml @@ -440,7 +440,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -574,7 +574,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1649,7 +1649,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/refactoring-cadence.lock.yml b/.github/workflows/refactoring-cadence.lock.yml index df91879c6f0..9215abfc389 100644 --- a/.github/workflows/refactoring-cadence.lock.yml +++ b/.github/workflows/refactoring-cadence.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1409,7 +1409,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/refiner.lock.yml b/.github/workflows/refiner.lock.yml index 3f0acf292cb..95c572d135f 100644 --- a/.github/workflows/refiner.lock.yml +++ b/.github/workflows/refiner.lock.yml @@ -395,7 +395,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -497,7 +497,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1601,7 +1601,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index 183af15191d..4b177c3af94 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -368,7 +368,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -474,7 +474,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/repo-audit-analyzer.lock.yml b/.github/workflows/repo-audit-analyzer.lock.yml index ee687b126c4..d2c1e2056cc 100644 --- a/.github/workflows/repo-audit-analyzer.lock.yml +++ b/.github/workflows/repo-audit-analyzer.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory (repo-audits) @@ -1414,7 +1414,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml index 6dc6a5b47ef..0cf988598e9 100644 --- a/.github/workflows/repo-tree-map.lock.yml +++ b/.github/workflows/repo-tree-map.lock.yml @@ -345,7 +345,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -450,7 +450,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1345,7 +1345,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml index 2138bab96c4..7ba64b57960 100644 --- a/.github/workflows/repository-quality-improver.lock.yml +++ b/.github/workflows/repository-quality-improver.lock.yml @@ -363,7 +363,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory (focus-areas) @@ -1405,7 +1405,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml index 369308a5b72..e03a35bb9bf 100644 --- a/.github/workflows/research.lock.yml +++ b/.github/workflows/research.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1387,7 +1387,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ruflo-backed-task.lock.yml b/.github/workflows/ruflo-backed-task.lock.yml index 6212fb0c4ca..b047e0278d2 100644 --- a/.github/workflows/ruflo-backed-task.lock.yml +++ b/.github/workflows/ruflo-backed-task.lock.yml @@ -397,7 +397,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -503,7 +503,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1600,7 +1600,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml index 9b36dcd1457..c91bc4e1aeb 100644 --- a/.github/workflows/safe-output-health.lock.yml +++ b/.github/workflows/safe-output-health.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1565,7 +1565,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml index 915a3a8b60a..ad3cda583ad 100644 --- a/.github/workflows/schema-consistency-checker.lock.yml +++ b/.github/workflows/schema-consistency-checker.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1339,7 +1339,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/schema-feature-coverage.lock.yml b/.github/workflows/schema-feature-coverage.lock.yml index 508e7d088b8..93e658d83df 100644 --- a/.github/workflows/schema-feature-coverage.lock.yml +++ b/.github/workflows/schema-feature-coverage.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1417,7 +1417,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml index bd17ef4fd6f..f454844caff 100644 --- a/.github/workflows/scout.lock.yml +++ b/.github/workflows/scout.lock.yml @@ -450,7 +450,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -554,7 +554,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1676,7 +1676,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/security-compliance.lock.yml b/.github/workflows/security-compliance.lock.yml index 11ef77e89cf..c189b2992ed 100644 --- a/.github/workflows/security-compliance.lock.yml +++ b/.github/workflows/security-compliance.lock.yml @@ -381,7 +381,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -482,7 +482,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1422,7 +1422,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/security-review.lock.yml b/.github/workflows/security-review.lock.yml index 57260aa2f3e..24fa9202425 100644 --- a/.github/workflows/security-review.lock.yml +++ b/.github/workflows/security-review.lock.yml @@ -409,7 +409,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -545,7 +545,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1829,7 +1829,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml index 295fd1a3df2..e2bcf52f261 100644 --- a/.github/workflows/semantic-function-refactor.lock.yml +++ b/.github/workflows/semantic-function-refactor.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -463,7 +463,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Precompute semantic refactor slice run: "set -euo pipefail\nmkdir -p /tmp/gh-aw/agent/semantic-function-refactor\n\nmapfile -t packages < <(find pkg -mindepth 1 -maxdepth 1 -type d | sort)\nif [ \"${#packages[@]}\" -eq 0 ]; then\n : > /tmp/gh-aw/agent/semantic-function-refactor/targets.txt\n : > /tmp/gh-aw/agent/semantic-function-refactor/go-files.txt\n exit 0\nfi\n\nbatch_size=2\nday_of_year=\"$(date -u +%j)\"\nday_of_year=\"${day_of_year#0}\"\nday_of_year=\"${day_of_year#0}\"\n: \"${day_of_year:=1}\"\nstart_index=$(( ( (day_of_year - 1) * batch_size ) % ${#packages[@]} ))\n: > /tmp/gh-aw/agent/semantic-function-refactor/targets.txt\n: > /tmp/gh-aw/agent/semantic-function-refactor/go-files.txt\n\nfor offset in 0 1; do\n idx=$(( (start_index + offset) % ${#packages[@]} ))\n pkg_dir=\"${packages[$idx]}\"\n printf '%s\\n' \"$pkg_dir\" >> /tmp/gh-aw/agent/semantic-function-refactor/targets.txt\n find \"$pkg_dir\" -name \"*.go\" ! -name \"*_test.go\" -type f | sort >> /tmp/gh-aw/agent/semantic-function-refactor/go-files.txt\ndone" @@ -1521,7 +1521,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/sergo.lock.yml b/.github/workflows/sergo.lock.yml index 83d191109cf..5ce30e02087 100644 --- a/.github/workflows/sergo.lock.yml +++ b/.github/workflows/sergo.lock.yml @@ -372,7 +372,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -478,7 +478,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1557,7 +1557,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/sighthound-security-scan.lock.yml b/.github/workflows/sighthound-security-scan.lock.yml index 38910161220..89160cc3c1d 100644 --- a/.github/workflows/sighthound-security-scan.lock.yml +++ b/.github/workflows/sighthound-security-scan.lock.yml @@ -331,7 +331,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -437,7 +437,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download Sighthound artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 @@ -1327,7 +1327,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/skillet.lock.yml b/.github/workflows/skillet.lock.yml index 55239b271ed..b9af64145b6 100644 --- a/.github/workflows/skillet.lock.yml +++ b/.github/workflows/skillet.lock.yml @@ -424,7 +424,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -527,7 +527,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1536,7 +1536,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index f230002806a..7eb978fc649 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -379,7 +379,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -494,7 +494,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1540,7 +1540,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-all-merged.lock.yml b/.github/workflows/smoke-agent-all-merged.lock.yml index b34b8024833..3ab00514363 100644 --- a/.github/workflows/smoke-agent-all-merged.lock.yml +++ b/.github/workflows/smoke-agent-all-merged.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -514,7 +514,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1502,7 +1502,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-all-none.lock.yml b/.github/workflows/smoke-agent-all-none.lock.yml index 6e4ab838e97..7dc99c618bd 100644 --- a/.github/workflows/smoke-agent-all-none.lock.yml +++ b/.github/workflows/smoke-agent-all-none.lock.yml @@ -410,7 +410,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1489,7 +1489,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-public-approved.lock.yml b/.github/workflows/smoke-agent-public-approved.lock.yml index 10eafc82db8..4db199484d3 100644 --- a/.github/workflows/smoke-agent-public-approved.lock.yml +++ b/.github/workflows/smoke-agent-public-approved.lock.yml @@ -415,7 +415,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -517,7 +517,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1546,7 +1546,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-public-none.lock.yml b/.github/workflows/smoke-agent-public-none.lock.yml index 04c2f6ab0aa..97c6510da39 100644 --- a/.github/workflows/smoke-agent-public-none.lock.yml +++ b/.github/workflows/smoke-agent-public-none.lock.yml @@ -410,7 +410,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1489,7 +1489,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-agent-scoped-approved.lock.yml b/.github/workflows/smoke-agent-scoped-approved.lock.yml index 840ea7bbd36..cb9e7733894 100644 --- a/.github/workflows/smoke-agent-scoped-approved.lock.yml +++ b/.github/workflows/smoke-agent-scoped-approved.lock.yml @@ -414,7 +414,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1501,7 +1501,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-aider.lock.yml b/.github/workflows/smoke-aider.lock.yml index 33c483517c5..0255542e25b 100644 --- a/.github/workflows/smoke-aider.lock.yml +++ b/.github/workflows/smoke-aider.lock.yml @@ -398,7 +398,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -493,7 +493,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1446,7 +1446,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-call-workflow.lock.yml b/.github/workflows/smoke-call-workflow.lock.yml index 04ba6ef4b9d..f31a52cc258 100644 --- a/.github/workflows/smoke-call-workflow.lock.yml +++ b/.github/workflows/smoke-call-workflow.lock.yml @@ -410,7 +410,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1470,7 +1470,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-checkout-pr-dispatch.lock.yml b/.github/workflows/smoke-checkout-pr-dispatch.lock.yml index 3deeb0c8e8c..0e2710d79cc 100644 --- a/.github/workflows/smoke-checkout-pr-dispatch.lock.yml +++ b/.github/workflows/smoke-checkout-pr-dispatch.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -519,7 +519,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1467,7 +1467,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-ci.lock.yml b/.github/workflows/smoke-ci.lock.yml index a60a36b9c48..d4ea4b5e598 100644 --- a/.github/workflows/smoke-ci.lock.yml +++ b/.github/workflows/smoke-ci.lock.yml @@ -403,7 +403,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -507,7 +507,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Write comment-memory configuration run: | diff --git a/.github/workflows/smoke-claude-on-copilot.lock.yml b/.github/workflows/smoke-claude-on-copilot.lock.yml index c8e022330a2..8bc4aa3c711 100644 --- a/.github/workflows/smoke-claude-on-copilot.lock.yml +++ b/.github/workflows/smoke-claude-on-copilot.lock.yml @@ -390,7 +390,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -489,7 +489,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1441,7 +1441,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index da3ee7f699b..1af81510dd5 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -444,7 +444,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -598,7 +598,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -2298,7 +2298,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml index 924f893c15e..d41dbd8b0b5 100644 --- a/.github/workflows/smoke-codex.lock.yml +++ b/.github/workflows/smoke-codex.lock.yml @@ -450,7 +450,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -563,7 +563,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -1939,7 +1939,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-aoai-apikey.lock.yml b/.github/workflows/smoke-copilot-aoai-apikey.lock.yml index 1aaad91d21f..ffeb9b33c65 100644 --- a/.github/workflows/smoke-copilot-aoai-apikey.lock.yml +++ b/.github/workflows/smoke-copilot-aoai-apikey.lock.yml @@ -498,7 +498,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -642,7 +642,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -2704,7 +2704,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-aoai-entra.lock.yml b/.github/workflows/smoke-copilot-aoai-entra.lock.yml index e01c686a7a6..40883e7bf43 100644 --- a/.github/workflows/smoke-copilot-aoai-entra.lock.yml +++ b/.github/workflows/smoke-copilot-aoai-entra.lock.yml @@ -503,7 +503,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -653,7 +653,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -2725,7 +2725,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-arm.lock.yml b/.github/workflows/smoke-copilot-arm.lock.yml index bf622c7e13e..38575d4d9ba 100644 --- a/.github/workflows/smoke-copilot-arm.lock.yml +++ b/.github/workflows/smoke-copilot-arm.lock.yml @@ -442,7 +442,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -586,7 +586,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -2449,7 +2449,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-auto.lock.yml b/.github/workflows/smoke-copilot-auto.lock.yml index e39d4f6a7cc..3398e38e685 100644 --- a/.github/workflows/smoke-copilot-auto.lock.yml +++ b/.github/workflows/smoke-copilot-auto.lock.yml @@ -381,7 +381,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -481,7 +481,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1388,7 +1388,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-mai.lock.yml b/.github/workflows/smoke-copilot-mai.lock.yml index 381528bd8fa..005e663ca9a 100644 --- a/.github/workflows/smoke-copilot-mai.lock.yml +++ b/.github/workflows/smoke-copilot-mai.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1460,7 +1460,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-sdk.lock.yml b/.github/workflows/smoke-copilot-sdk.lock.yml index fab39429563..415c9b9b2d1 100644 --- a/.github/workflows/smoke-copilot-sdk.lock.yml +++ b/.github/workflows/smoke-copilot-sdk.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -509,7 +509,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1420,7 +1420,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-small.lock.yml b/.github/workflows/smoke-copilot-small.lock.yml index c4e3e92a143..876695a94c8 100644 --- a/.github/workflows/smoke-copilot-small.lock.yml +++ b/.github/workflows/smoke-copilot-small.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -509,7 +509,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1414,7 +1414,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot-sub-agents.lock.yml b/.github/workflows/smoke-copilot-sub-agents.lock.yml index c11ce6a8ce0..afdf2dbcc67 100644 --- a/.github/workflows/smoke-copilot-sub-agents.lock.yml +++ b/.github/workflows/smoke-copilot-sub-agents.lock.yml @@ -369,7 +369,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -471,7 +471,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1372,7 +1372,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml index c054c7222bb..aa5ac800667 100644 --- a/.github/workflows/smoke-copilot.lock.yml +++ b/.github/workflows/smoke-copilot.lock.yml @@ -504,7 +504,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -653,7 +653,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Write comment-memory configuration run: | @@ -2720,7 +2720,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-create-cross-repo-pr.lock.yml b/.github/workflows/smoke-create-cross-repo-pr.lock.yml index 72a68bd2be2..bc546d45421 100644 --- a/.github/workflows/smoke-create-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-create-cross-repo-pr.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -534,7 +534,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1563,7 +1563,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-crush.lock.yml b/.github/workflows/smoke-crush.lock.yml index acfd1ab4067..57bb5c4f63a 100644 --- a/.github/workflows/smoke-crush.lock.yml +++ b/.github/workflows/smoke-crush.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1818,7 +1818,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-cursor.lock.yml b/.github/workflows/smoke-cursor.lock.yml index df7d3d309f2..a792129c92c 100644 --- a/.github/workflows/smoke-cursor.lock.yml +++ b/.github/workflows/smoke-cursor.lock.yml @@ -426,7 +426,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1697,7 +1697,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-deepseek-harness.lock.yml b/.github/workflows/smoke-deepseek-harness.lock.yml index 1b03938f2f6..306784830db 100644 --- a/.github/workflows/smoke-deepseek-harness.lock.yml +++ b/.github/workflows/smoke-deepseek-harness.lock.yml @@ -419,7 +419,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -512,7 +512,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1610,7 +1610,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-gemini.lock.yml b/.github/workflows/smoke-gemini.lock.yml index 1a87e0692cb..cc9fb33660e 100644 --- a/.github/workflows/smoke-gemini.lock.yml +++ b/.github/workflows/smoke-gemini.lock.yml @@ -469,7 +469,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -564,7 +564,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1632,7 +1632,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-github-claude.lock.yml b/.github/workflows/smoke-github-claude.lock.yml index f9d9fe862e7..2b50d7735f3 100644 --- a/.github/workflows/smoke-github-claude.lock.yml +++ b/.github/workflows/smoke-github-claude.lock.yml @@ -390,7 +390,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -489,7 +489,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1441,7 +1441,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-goose.lock.yml b/.github/workflows/smoke-goose.lock.yml index cc0a661f3e3..60810690652 100644 --- a/.github/workflows/smoke-goose.lock.yml +++ b/.github/workflows/smoke-goose.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1790,7 +1790,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-kiro.lock.yml b/.github/workflows/smoke-kiro.lock.yml index 8abcba5b1ae..750c427b16e 100644 --- a/.github/workflows/smoke-kiro.lock.yml +++ b/.github/workflows/smoke-kiro.lock.yml @@ -426,7 +426,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -516,7 +516,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1608,7 +1608,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-multi-pr.lock.yml b/.github/workflows/smoke-multi-pr.lock.yml index 8b6c1fbdbbd..ac2c03fd82f 100644 --- a/.github/workflows/smoke-multi-pr.lock.yml +++ b/.github/workflows/smoke-multi-pr.lock.yml @@ -412,7 +412,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1529,7 +1529,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-opencode.lock.yml b/.github/workflows/smoke-opencode.lock.yml index fa8aed89899..40e9c574322 100644 --- a/.github/workflows/smoke-opencode.lock.yml +++ b/.github/workflows/smoke-opencode.lock.yml @@ -426,7 +426,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -518,7 +518,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1644,7 +1644,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-otel-backends.lock.yml b/.github/workflows/smoke-otel-backends.lock.yml index a843678f328..9b8a654ac90 100644 --- a/.github/workflows/smoke-otel-backends.lock.yml +++ b/.github/workflows/smoke-otel-backends.lock.yml @@ -446,7 +446,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -553,7 +553,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1597,7 +1597,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-pi.lock.yml b/.github/workflows/smoke-pi.lock.yml index dc0ebda026d..3521276898b 100644 --- a/.github/workflows/smoke-pi.lock.yml +++ b/.github/workflows/smoke-pi.lock.yml @@ -430,7 +430,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -529,7 +529,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1501,7 +1501,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-project.lock.yml b/.github/workflows/smoke-project.lock.yml index 90692900554..f455f2b30bf 100644 --- a/.github/workflows/smoke-project.lock.yml +++ b/.github/workflows/smoke-project.lock.yml @@ -454,7 +454,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -557,7 +557,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1813,7 +1813,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-pydantic.lock.yml b/.github/workflows/smoke-pydantic.lock.yml index 3aa53985ce9..42de802f04c 100644 --- a/.github/workflows/smoke-pydantic.lock.yml +++ b/.github/workflows/smoke-pydantic.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -493,7 +493,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1708,7 +1708,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-service-ports.lock.yml b/.github/workflows/smoke-service-ports.lock.yml index a2a735a1b83..7f3fe2142d7 100644 --- a/.github/workflows/smoke-service-ports.lock.yml +++ b/.github/workflows/smoke-service-ports.lock.yml @@ -403,7 +403,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1504,7 +1504,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-temporary-id.lock.yml b/.github/workflows/smoke-temporary-id.lock.yml index e2bc2469af7..a20dcc6ee79 100644 --- a/.github/workflows/smoke-temporary-id.lock.yml +++ b/.github/workflows/smoke-temporary-id.lock.yml @@ -452,7 +452,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -554,7 +554,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1619,7 +1619,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-test-tools.lock.yml b/.github/workflows/smoke-test-tools.lock.yml index adab30a620e..103bf6a11c1 100644 --- a/.github/workflows/smoke-test-tools.lock.yml +++ b/.github/workflows/smoke-test-tools.lock.yml @@ -416,7 +416,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -543,7 +543,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1539,7 +1539,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-update-cross-repo-pr.lock.yml b/.github/workflows/smoke-update-cross-repo-pr.lock.yml index 1f476b54a3d..2139a9d4d41 100644 --- a/.github/workflows/smoke-update-cross-repo-pr.lock.yml +++ b/.github/workflows/smoke-update-cross-repo-pr.lock.yml @@ -419,7 +419,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -550,7 +550,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1580,7 +1580,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml index 8f1bf8f8710..cbb3c7dd659 100644 --- a/.github/workflows/smoke-workflow-call-with-inputs.lock.yml +++ b/.github/workflows/smoke-workflow-call-with-inputs.lock.yml @@ -427,7 +427,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: ${{ steps.artifact-prefix.outputs.prefix }}activation-artifact + name: ${{ steps.artifact-prefix.outputs.prefix }}ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -531,7 +531,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: ${{ needs.activation.outputs.artifact_prefix }}activation-artifact + name: ${{ needs.activation.outputs.artifact_prefix }}ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1439,7 +1439,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: ${{ needs.activation.outputs.artifact_prefix }}activation-artifact + name: ${{ needs.activation.outputs.artifact_prefix }}ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/smoke-workflow-call.lock.yml b/.github/workflows/smoke-workflow-call.lock.yml index 87cc0c8b277..d1355f38840 100644 --- a/.github/workflows/smoke-workflow-call.lock.yml +++ b/.github/workflows/smoke-workflow-call.lock.yml @@ -432,7 +432,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: ${{ steps.artifact-prefix.outputs.prefix }}activation-artifact + name: ${{ steps.artifact-prefix.outputs.prefix }}ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -535,7 +535,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: ${{ needs.activation.outputs.artifact_prefix }}activation-artifact + name: ${{ needs.activation.outputs.artifact_prefix }}ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1463,7 +1463,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: ${{ needs.activation.outputs.artifact_prefix }}activation-artifact + name: ${{ needs.activation.outputs.artifact_prefix }}ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/spec-enforcer.lock.yml b/.github/workflows/spec-enforcer.lock.yml index e2cada36266..bd86e6f3852 100644 --- a/.github/workflows/spec-enforcer.lock.yml +++ b/.github/workflows/spec-enforcer.lock.yml @@ -370,7 +370,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -467,7 +467,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1399,7 +1399,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/spec-extractor.lock.yml b/.github/workflows/spec-extractor.lock.yml index c18afa870e8..d1dc6474bdf 100644 --- a/.github/workflows/spec-extractor.lock.yml +++ b/.github/workflows/spec-extractor.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1512,7 +1512,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/spec-librarian.lock.yml b/.github/workflows/spec-librarian.lock.yml index 3d94b7e3af0..f2eab5f21f5 100644 --- a/.github/workflows/spec-librarian.lock.yml +++ b/.github/workflows/spec-librarian.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -466,7 +466,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1455,7 +1455,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/squad-game-planner.lock.yml b/.github/workflows/squad-game-planner.lock.yml index 3913ef549cf..5449b7de3c8 100644 --- a/.github/workflows/squad-game-planner.lock.yml +++ b/.github/workflows/squad-game-planner.lock.yml @@ -365,7 +365,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -470,7 +470,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Restore ambient folders from activation artifact env: @@ -1381,7 +1381,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/squad-implement-worker.lock.yml b/.github/workflows/squad-implement-worker.lock.yml index 06242fca83d..aafafe20c64 100644 --- a/.github/workflows/squad-implement-worker.lock.yml +++ b/.github/workflows/squad-implement-worker.lock.yml @@ -403,7 +403,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -506,7 +506,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Restore ambient folders from activation artifact env: @@ -1543,7 +1543,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/squad-plan.lock.yml b/.github/workflows/squad-plan.lock.yml index cdab7c02bc3..47d4b2c9254 100644 --- a/.github/workflows/squad-plan.lock.yml +++ b/.github/workflows/squad-plan.lock.yml @@ -422,7 +422,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -524,7 +524,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Restore ambient folders from activation artifact env: @@ -1453,7 +1453,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/squad.lock.yml b/.github/workflows/squad.lock.yml index 1739fc5d2d4..3e47e21525b 100644 --- a/.github/workflows/squad.lock.yml +++ b/.github/workflows/squad.lock.yml @@ -449,7 +449,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -552,7 +552,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Restore ambient folders from activation artifact env: @@ -2096,7 +2096,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/stale-pr-cleanup.lock.yml b/.github/workflows/stale-pr-cleanup.lock.yml index 2a82bfba933..2d29ddac425 100644 --- a/.github/workflows/stale-pr-cleanup.lock.yml +++ b/.github/workflows/stale-pr-cleanup.lock.yml @@ -341,7 +341,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -447,7 +447,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1418,7 +1418,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index 35d4b1ecc97..3184c2fa25f 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -383,7 +383,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -510,7 +510,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1663,7 +1663,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml index 20e00159bfe..e30aeb4565c 100644 --- a/.github/workflows/static-analysis-report.lock.yml +++ b/.github/workflows/static-analysis-report.lock.yml @@ -367,7 +367,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -513,7 +513,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1606,7 +1606,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/step-name-alignment.lock.yml b/.github/workflows/step-name-alignment.lock.yml index 9dfffcc84af..05f006616f2 100644 --- a/.github/workflows/step-name-alignment.lock.yml +++ b/.github/workflows/step-name-alignment.lock.yml @@ -357,7 +357,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -464,7 +464,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1475,7 +1475,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/sub-issue-closer.lock.yml b/.github/workflows/sub-issue-closer.lock.yml index e759e71fb45..bd16436eb35 100644 --- a/.github/workflows/sub-issue-closer.lock.yml +++ b/.github/workflows/sub-issue-closer.lock.yml @@ -348,7 +348,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -452,7 +452,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1420,7 +1420,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml index d39be5aaf6c..5b4b0f67d6f 100644 --- a/.github/workflows/super-linter.lock.yml +++ b/.github/workflows/super-linter.lock.yml @@ -360,7 +360,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -470,7 +470,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1418,7 +1418,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml index ff685eecc39..d83aeee5fb9 100644 --- a/.github/workflows/technical-doc-writer.lock.yml +++ b/.github/workflows/technical-doc-writer.lock.yml @@ -379,7 +379,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -502,7 +502,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1594,7 +1594,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/terminal-stylist.lock.yml b/.github/workflows/terminal-stylist.lock.yml index 71086f23004..2651444a189 100644 --- a/.github/workflows/terminal-stylist.lock.yml +++ b/.github/workflows/terminal-stylist.lock.yml @@ -356,7 +356,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -459,7 +459,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1389,7 +1389,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/test-quality-sentinel.lock.yml b/.github/workflows/test-quality-sentinel.lock.yml index 6215383411b..349300a2c6a 100644 --- a/.github/workflows/test-quality-sentinel.lock.yml +++ b/.github/workflows/test-quality-sentinel.lock.yml @@ -453,7 +453,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -555,7 +555,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - env: EXPR_GITHUB_EVENT_PULL_REQUEST_BASE_SHA: ${{ github.event.pull_request.base.sha }} @@ -1559,7 +1559,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml index 6de76dac643..8e361eb2f73 100644 --- a/.github/workflows/tidy.lock.yml +++ b/.github/workflows/tidy.lock.yml @@ -404,7 +404,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -509,7 +509,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Setup Node.js uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -1533,7 +1533,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml index e27b4404caf..01758462f85 100644 --- a/.github/workflows/typist.lock.yml +++ b/.github/workflows/typist.lock.yml @@ -399,7 +399,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -504,7 +504,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1511,7 +1511,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/ubuntu-image-analyzer.lock.yml b/.github/workflows/ubuntu-image-analyzer.lock.yml index 83bffc44f5c..ac3119fcf12 100644 --- a/.github/workflows/ubuntu-image-analyzer.lock.yml +++ b/.github/workflows/ubuntu-image-analyzer.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -464,7 +464,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1424,7 +1424,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/uk-ai-operational-resilience.lock.yml b/.github/workflows/uk-ai-operational-resilience.lock.yml index b35a162581e..b692ee89e0e 100644 --- a/.github/workflows/uk-ai-operational-resilience.lock.yml +++ b/.github/workflows/uk-ai-operational-resilience.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -465,7 +465,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1429,7 +1429,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml index 28121cc398c..75be6c78d34 100644 --- a/.github/workflows/unbloat-docs.lock.yml +++ b/.github/workflows/unbloat-docs.lock.yml @@ -418,7 +418,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -511,7 +511,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1524,7 +1524,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/update-astro.lock.yml b/.github/workflows/update-astro.lock.yml index eff139e1641..4cf54af8c24 100644 --- a/.github/workflows/update-astro.lock.yml +++ b/.github/workflows/update-astro.lock.yml @@ -366,7 +366,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -472,7 +472,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1449,7 +1449,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml index fcba6564ae2..e8e1278b1f8 100644 --- a/.github/workflows/video-analyzer.lock.yml +++ b/.github/workflows/video-analyzer.lock.yml @@ -353,7 +353,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -455,7 +455,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - id: setup-ffmpeg name: Setup FFmpeg @@ -1366,7 +1366,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/visual-regression-checker.lock.yml b/.github/workflows/visual-regression-checker.lock.yml index d6fb29fe77f..7626dc85163 100644 --- a/.github/workflows/visual-regression-checker.lock.yml +++ b/.github/workflows/visual-regression-checker.lock.yml @@ -371,7 +371,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -469,7 +469,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Checkout repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -1430,7 +1430,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/weekly-blog-post-writer.lock.yml b/.github/workflows/weekly-blog-post-writer.lock.yml index 79b3d46c91d..dd010924aa6 100644 --- a/.github/workflows/weekly-blog-post-writer.lock.yml +++ b/.github/workflows/weekly-blog-post-writer.lock.yml @@ -411,7 +411,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -561,7 +561,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone wiki-memory branch (default) @@ -1639,7 +1639,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/weekly-editors-health-check.lock.yml b/.github/workflows/weekly-editors-health-check.lock.yml index 3873b075ba7..5562a2dbcd3 100644 --- a/.github/workflows/weekly-editors-health-check.lock.yml +++ b/.github/workflows/weekly-editors-health-check.lock.yml @@ -347,7 +347,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -452,7 +452,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1451,7 +1451,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml index 6f5ab6d4441..9c5056e1d71 100644 --- a/.github/workflows/weekly-issue-summary.lock.yml +++ b/.github/workflows/weekly-issue-summary.lock.yml @@ -364,7 +364,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -473,7 +473,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1442,7 +1442,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml index d2c6f6f0348..1ac23d9a990 100644 --- a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml +++ b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml @@ -347,7 +347,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1393,7 +1393,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/workflow-generator.lock.yml b/.github/workflows/workflow-generator.lock.yml index c9d295a7e5c..4cb1a11e904 100644 --- a/.github/workflows/workflow-generator.lock.yml +++ b/.github/workflows/workflow-generator.lock.yml @@ -389,7 +389,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -491,7 +491,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: @@ -1462,7 +1462,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/workflow-health-manager.lock.yml b/.github/workflows/workflow-health-manager.lock.yml index 41e9a5becdf..66841723cfa 100644 --- a/.github/workflows/workflow-health-manager.lock.yml +++ b/.github/workflows/workflow-health-manager.lock.yml @@ -361,7 +361,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -467,7 +467,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Repo memory git-based storage configuration from frontmatter processed below - name: Clone repo-memory branch (default) @@ -1509,7 +1509,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/workflow-normalizer.lock.yml b/.github/workflows/workflow-normalizer.lock.yml index 4255e881bd7..711c2de2e46 100644 --- a/.github/workflows/workflow-normalizer.lock.yml +++ b/.github/workflows/workflow-normalizer.lock.yml @@ -358,7 +358,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -496,7 +496,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw # Cache memory file share configuration from frontmatter processed below - name: Create cache-memory directory @@ -1504,7 +1504,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/.github/workflows/workflow-skill-extractor.lock.yml b/.github/workflows/workflow-skill-extractor.lock.yml index b0ab06d60db..dc92ebd44b7 100644 --- a/.github/workflows/workflow-skill-extractor.lock.yml +++ b/.github/workflows/workflow-skill-extractor.lock.yml @@ -345,7 +345,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -451,7 +451,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Build workflow index uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 @@ -1409,7 +1409,7 @@ jobs: continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Download agent output artifact id: download-agent-output diff --git a/pkg/cli/logs_artifact_set.go b/pkg/cli/logs_artifact_set.go index bedb58124ab..73b1f942a30 100644 --- a/pkg/cli/logs_artifact_set.go +++ b/pkg/cli/logs_artifact_set.go @@ -3,7 +3,7 @@ // for filtering artifact downloads in the logs and audit commands. // // Key responsibilities: -// - Defining known artifact set names (all, agent, mcp, firewall, detection, github-api, activation) +// - Defining known artifact set names (all, agent, mcp, firewall, detection, github-api, ambient) // - Mapping sets to concrete artifact name patterns // - Validating artifact set inputs from CLI flags and MCP arguments // - Determining whether a given artifact name matches an active filter @@ -35,8 +35,11 @@ const ( // ArtifactSetAll downloads every artifact for the run (default behavior). ArtifactSetAll ArtifactSet = "all" - // ArtifactSetActivation downloads the activation artifact (aw_info.json, prompt.txt, + // ArtifactSetAmbient downloads the ambient artifact (aw_info.json, prompt.txt, // and github_rate_limits.jsonl from the activation job). + ArtifactSetAmbient ArtifactSet = "ambient" + + // ArtifactSetActivation is a compatibility alias for the former artifact set name. ArtifactSetActivation ArtifactSet = "activation" // ArtifactSetAgent downloads the unified agent artifact containing agent logs, @@ -83,13 +86,14 @@ const ( // ResolveArtifactFilter means no filter is active so the caller downloads all artifacts). var artifactSetArtifacts = map[ArtifactSet][]string{ ArtifactSetAll: nil, // no filtering – download all artifacts - ArtifactSetActivation: {constants.ActivationArtifactName}, + ArtifactSetAmbient: {constants.AmbientArtifactName}, + ArtifactSetActivation: {constants.AmbientArtifactName}, ArtifactSetAgent: {constants.AgentArtifactName, constants.AgentOutputFallbackArtifactName}, ArtifactSetMCP: {constants.AgentArtifactName}, ArtifactSetFirewall: {constants.AgentArtifactName}, ArtifactSetDetection: {constants.DetectionArtifactName}, // github-api: both jobs upload github_rate_limits.jsonl; fetch both for a complete view. - ArtifactSetGitHubAPI: {constants.ActivationArtifactName, constants.AgentArtifactName}, + ArtifactSetGitHubAPI: {constants.AmbientArtifactName, constants.AgentArtifactName}, // experiment: A/B experiment state uploaded by the activation job. ArtifactSetExperiment: {constants.ExperimentArtifactName}, // usage: compact conclusion artifact for lightweight reporting/forecasting. diff --git a/pkg/cli/logs_artifact_set_test.go b/pkg/cli/logs_artifact_set_test.go index ab380bd5038..3ec05a30c30 100644 --- a/pkg/cli/logs_artifact_set_test.go +++ b/pkg/cli/logs_artifact_set_test.go @@ -121,9 +121,14 @@ func TestResolveArtifactFilter(t *testing.T) { expected: nil, }, { - name: "activation resolves to activation artifact", + name: "ambient resolves to ambient artifact", + sets: []string{"ambient"}, + expected: []string{constants.AmbientArtifactName}, + }, + { + name: "activation alias resolves to ambient artifact", sets: []string{"activation"}, - expected: []string{constants.ActivationArtifactName}, + expected: []string{constants.AmbientArtifactName}, }, { name: "agent resolves to agent artifact and output fallback", @@ -153,7 +158,7 @@ func TestResolveArtifactFilter(t *testing.T) { { name: "github-api resolves to activation and agent", sets: []string{"github-api"}, - expected: []string{constants.ActivationArtifactName, "agent"}, + expected: []string{constants.AmbientArtifactName, "agent"}, }, { name: "usage resolves to usage artifact", @@ -168,12 +173,12 @@ func TestResolveArtifactFilter(t *testing.T) { { name: "multiple sets are merged and deduplicated", sets: []string{"activation", "agent"}, - expected: []string{constants.ActivationArtifactName, constants.AgentArtifactName, constants.AgentOutputFallbackArtifactName}, + expected: []string{constants.AmbientArtifactName, constants.AgentArtifactName, constants.AgentOutputFallbackArtifactName}, }, { name: "github-api and agent deduplicates agent", sets: []string{"github-api", "agent"}, - expected: []string{constants.ActivationArtifactName, constants.AgentArtifactName, constants.AgentOutputFallbackArtifactName}, + expected: []string{constants.AmbientArtifactName, constants.AgentArtifactName, constants.AgentOutputFallbackArtifactName}, }, } @@ -262,7 +267,7 @@ func TestValidArtifactSetNames(t *testing.T) { names := ValidArtifactSetNames() require.NotEmpty(t, names, "ValidArtifactSetNames should return non-empty slice") - expected := []string{"all", "activation", "agent", "detection", "evals", "experiment", "firewall", "github-api", "mcp", "usage"} + expected := []string{"all", "ambient", "activation", "agent", "detection", "evals", "experiment", "firewall", "github-api", "mcp", "usage"} assert.ElementsMatch(t, expected, names, "ValidArtifactSetNames should contain all known sets") } diff --git a/pkg/cli/logs_download.go b/pkg/cli/logs_download.go index a4975eaf63d..f58a32d2811 100644 --- a/pkg/cli/logs_download.go +++ b/pkg/cli/logs_download.go @@ -58,7 +58,10 @@ func shouldDownloadWorkflowRunLogs(artifactFilter []string) bool { return true } for _, artifact := range artifactFilter { - if artifact != constants.ActivationArtifactName && artifact != constants.UsageArtifactName { + if artifact != constants.AmbientArtifactName && + artifact != constants.LegacyActivationArtifactName && + artifact != constants.LegacyActivationJobArtifactName && + artifact != constants.UsageArtifactName { return true } } @@ -639,16 +642,20 @@ func resolveActivationArtifactNames(ctx context.Context, opts downloadArtifactsO artifactNames, err := listRunArtifactNames(ctx, opts.runID, opts.owner, opts.repo, opts.hostname, opts.verbose) if err != nil { logsDownloadLog.Printf("Failed to list artifacts for activation fallback: %v", err) - return []string{constants.ActivationArtifactName} + return []string{constants.AmbientArtifactName} } var matched []string for _, name := range artifactNames { - if artifactMatchesFilter(name, []string{constants.ActivationArtifactName}) { + if artifactMatchesFilter(name, []string{ + constants.AmbientArtifactName, + constants.LegacyActivationArtifactName, + constants.LegacyActivationJobArtifactName, + }) { matched = append(matched, name) } } if len(matched) == 0 { - return []string{constants.ActivationArtifactName} + return []string{constants.AmbientArtifactName} } return matched } diff --git a/pkg/cli/logs_download_artifacts.go b/pkg/cli/logs_download_artifacts.go index e7f3dfec055..2879ab6b59e 100644 --- a/pkg/cli/logs_download_artifacts.go +++ b/pkg/cli/logs_download_artifacts.go @@ -189,7 +189,7 @@ func validateArtifactName(name string) error { // criticalArtifactNames lists the artifact names that are essential for audit analysis. // When a bulk download fails partially (e.g., due to non-zip artifacts), these artifacts // are retried individually so that flattening and audit extraction have data to work with. -var criticalArtifactNames = []string{constants.ActivationArtifactName, constants.AgentArtifactName, constants.AgentOutputFallbackArtifactName} +var criticalArtifactNames = []string{constants.AmbientArtifactName, constants.AgentArtifactName, constants.AgentOutputFallbackArtifactName} // retryCriticalArtifacts downloads critical artifacts individually when the bulk download // was only partially successful. gh run download aborts on the first non-zip artifact, diff --git a/pkg/cli/logs_download_flatten.go b/pkg/cli/logs_download_flatten.go index 0d33b719874..4f2d86973c2 100644 --- a/pkg/cli/logs_download_flatten.go +++ b/pkg/cli/logs_download_flatten.go @@ -255,9 +255,12 @@ func flattenAgentOutputFallbackArtifact(outputDir string, verbose bool) error { // flattenActivationArtifact flattens the activation artifact directory structure. // The activation artifact contains aw_info.json and aw-prompts/prompt.txt. // This function moves those files to the root output directory and removes the nested structure. -// In workflow_call context, the artifact may be prefixed: "-activation" +// In workflow_call context, the artifact may be prefixed: "-ambient". func flattenActivationArtifact(outputDir string, verbose bool) error { - activationDir := findArtifactDir(outputDir, "activation", "") + activationDir := findArtifactDir(outputDir, constants.AmbientArtifactName, constants.LegacyActivationArtifactName) + if activationDir == "" { + activationDir = findArtifactDir(outputDir, constants.LegacyActivationJobArtifactName, "") + } if activationDir == "" { // No activation artifact, nothing to flatten return nil diff --git a/pkg/cli/logs_download_test.go b/pkg/cli/logs_download_test.go index 773bda4a2c5..4caa7e12450 100644 --- a/pkg/cli/logs_download_test.go +++ b/pkg/cli/logs_download_test.go @@ -270,7 +270,7 @@ func TestCriticalArtifactNames(t *testing.T) { t.Parallel() // Verify the list of critical artifacts includes the expected names expected := map[string]bool{ - constants.ActivationArtifactName: true, + constants.AmbientArtifactName: true, constants.AgentArtifactName: true, constants.AgentOutputFallbackArtifactName: true, } diff --git a/pkg/constants/job_constants.go b/pkg/constants/job_constants.go index 5e54009f08e..d75498317d7 100644 --- a/pkg/constants/job_constants.go +++ b/pkg/constants/job_constants.go @@ -152,10 +152,17 @@ const OtlpExportErrorsFilename = "otlp-export-errors.jsonl" // Empty string in non-workflow_call context. const ArtifactPrefixOutputName = "artifact_prefix" -// ActivationArtifactName is the artifact name for the activation job output -// (aw_info.json and prompt.txt). Keep the suffix because "activation" is -// rejected as an artifact name by the GitHub Actions artifact API. -const ActivationArtifactName = "activation-artifact" +// AmbientArtifactName is the artifact name for the activation job output +// (aw_info.json and prompt.txt). +const AmbientArtifactName = "ambient" + +// LegacyActivationArtifactName is the artifact name emitted by older workflow +// versions. It is kept so audit and logs can read existing workflow runs. +const LegacyActivationArtifactName = "activation-artifact" + +// LegacyActivationJobArtifactName is the original artifact name emitted before +// activation became a reserved artifact name. +const LegacyActivationJobArtifactName = "activation" // ActivationStageAmbientFoldersStepName is the step name used to stage ambient // folders before the activation artifact is packaged. It is a stable anchor diff --git a/pkg/workflow/compiler_activation_outputs.go b/pkg/workflow/compiler_activation_outputs.go index 91eb405efa5..f8b4b7390fc 100644 --- a/pkg/workflow/compiler_activation_outputs.go +++ b/pkg/workflow/compiler_activation_outputs.go @@ -155,7 +155,7 @@ func (c *Compiler) configureActivationNeedsAndCondition(ctx *activationJobBuildC // addActivationArtifactUploadStep appends the activation artifact upload step for downstream jobs. func (c *Compiler) addActivationArtifactUploadStep(ctx *activationJobBuildContext) { compilerActivationJobLog.Print("Adding activation artifact upload step") - activationArtifactName := artifactPrefixExprForActivationJob(ctx.data) + constants.ActivationArtifactName + activationArtifactName := artifactPrefixExprForActivationJob(ctx.data) + constants.AmbientArtifactName ctx.steps = append(ctx.steps, generateStageAmbientFoldersStep(ctx.data)...) ctx.steps = append(ctx.steps, " - name: Stage prompt files for artifact upload\n", diff --git a/pkg/workflow/compiler_activation_outputs_test.go b/pkg/workflow/compiler_activation_outputs_test.go index c25dfc63054..ac7cb6a9baa 100644 --- a/pkg/workflow/compiler_activation_outputs_test.go +++ b/pkg/workflow/compiler_activation_outputs_test.go @@ -17,7 +17,7 @@ func TestActivationArtifactNameIsValid(t *testing.T) { compiler.addActivationArtifactUploadStep(ctx) - assert.Contains(t, strings.Join(ctx.steps, ""), "name: activation-artifact") + assert.Contains(t, strings.Join(ctx.steps, ""), "name: ambient") } // TestConfigureActivationNeedsAndCondition_EngineEnvJobReferences tests that custom jobs diff --git a/pkg/workflow/compiler_yaml_runtime_setup.go b/pkg/workflow/compiler_yaml_runtime_setup.go index f33830aa24b..485d183ad43 100644 --- a/pkg/workflow/compiler_yaml_runtime_setup.go +++ b/pkg/workflow/compiler_yaml_runtime_setup.go @@ -233,7 +233,7 @@ func (c *Compiler) generateActivationArtifactAndCommentMemorySteps(yaml *strings // Must happen before comment-memory preparation (needs prompt.txt for injection) and // before the base-branch restore in generateEngineInstallAndPreAgentSteps. compilerYamlLog.Print("Adding activation artifact download step") - activationArtifactName := artifactPrefixExprForDownstreamJob(data) + constants.ActivationArtifactName + activationArtifactName := artifactPrefixExprForDownstreamJob(data) + constants.AmbientArtifactName yaml.WriteString(" - name: Download activation artifact\n") fmt.Fprintf(yaml, " uses: %s\n", c.getActionPin("actions/download-artifact")) yaml.WriteString(" with:\n") diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden index 4b185728817..9c74a99f47c 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/claude.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -353,7 +353,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden index f13781f3fe8..7902ceeb834 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/codex.golden @@ -273,7 +273,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -354,7 +354,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden index eb240c609c5..9201ecfb10b 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/copilot.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -353,7 +353,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden index b8e7c86d772..888e6c3cadb 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/gemini.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -344,7 +344,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden b/pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden index 2ae5cc765b8..9bbd5331693 100644 --- a/pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden +++ b/pkg/workflow/testdata/TestWasmGolden_AllEngines/pi.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -343,7 +343,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden index 933582ed939..bde90df5352 100644 --- a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden +++ b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/basic-copilot.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -353,7 +353,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden index 94c5ce879ee..cf72b1aa2c1 100644 --- a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden +++ b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/playwright-cli-mode.golden @@ -272,7 +272,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -353,7 +353,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden index b1b938b930b..ca47f85d34b 100644 --- a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden +++ b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/smoke-copilot.golden @@ -307,7 +307,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -429,7 +429,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden index 5d98ebb06cd..2d18b6b506c 100644 --- a/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden +++ b/pkg/workflow/testdata/TestWasmGolden_CompileFixtures/with-imports.golden @@ -273,7 +273,7 @@ jobs: if: success() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: - name: activation-artifact + name: ambient include-hidden-files: true path: | /tmp/gh-aw/aw_info.json @@ -354,7 +354,7 @@ jobs: - name: Download activation artifact uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: - name: activation-artifact + name: ambient path: /tmp/gh-aw - name: Configure Git credentials env: diff --git a/pkg/workflow/threat_detection_job.go b/pkg/workflow/threat_detection_job.go index e6b9e121294..707835cb2e9 100644 --- a/pkg/workflow/threat_detection_job.go +++ b/pkg/workflow/threat_detection_job.go @@ -213,7 +213,7 @@ func (c *Compiler) buildDetectionJob(data *WorkflowData) (*Job, error) { func buildDetectionActivationArtifactDownloadSteps(data *WorkflowData, pinAction func(string) string) []string { return buildArtifactDownloadSteps(ArtifactDownloadConfig{ - ArtifactName: artifactPrefixExprForDownstreamJob(data) + constants.ActivationArtifactName, + ArtifactName: artifactPrefixExprForDownstreamJob(data) + constants.AmbientArtifactName, DownloadPath: constants.TmpGhAwDir, StepName: "Download activation artifact", }, pinAction) diff --git a/pkg/workflow/threat_detection_test.go b/pkg/workflow/threat_detection_test.go index 79715c2fd3a..eb946230450 100644 --- a/pkg/workflow/threat_detection_test.go +++ b/pkg/workflow/threat_detection_test.go @@ -2014,8 +2014,8 @@ func TestDetectionJobDownloadsActivationArtifactBeforeAgentOutput(t *testing.T) if agentDownloadIdx > prepareIdx { t.Error("Agent output download should appear before detection file preparation") } - if !strings.Contains(stepsString, "name: activation") { - t.Error("Detection job should download the activation artifact so prompt files are available") + if !strings.Contains(stepsString, "name: ambient") { + t.Error("Detection job should download the ambient artifact so prompt files are available") } if !strings.Contains(stepsString, "path: /tmp/gh-aw") { t.Error("Activation artifact should download into /tmp/gh-aw for prompt staging") @@ -2027,7 +2027,7 @@ func TestDetectionActivationArtifactDownloadUsesActivationPrefixForWorkflowCall( On: "workflow_call", }, getActionPin), "") - expected := "name: ${{ needs.activation.outputs.artifact_prefix }}activation" + expected := "name: ${{ needs.activation.outputs.artifact_prefix }}ambient" if !strings.Contains(steps, expected) { t.Fatalf("Expected workflow_call detection activation download to use %q, got:\n%s", expected, steps) }