From bece01c03af25ac50aa4e6fc599bfb8282ed3a88 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Feb 2026 04:42:37 +0000 Subject: [PATCH 1/5] Initial plan From ae4d757e53169e87613abe75c138226c1ac82275 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Feb 2026 04:48:48 +0000 Subject: [PATCH 2/5] Add context variable validation to activation job - Create validate_context_variables.cjs to validate numeric fields - Add comprehensive test coverage for validation logic - Integrate validation step into activation job compiler - Pass all numeric context variables as environment variables - Validates that numeric fields contain only integers or are empty Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .github/workflows/ai-moderator.lock.yml | 40 ++++ .../setup/js/validate_context_variables.cjs | 184 ++++++++++++++++ .../js/validate_context_variables.test.cjs | 205 ++++++++++++++++++ pkg/workflow/compiler_activation_jobs.go | 41 ++++ 4 files changed, 470 insertions(+) create mode 100644 actions/setup/js/validate_context_variables.cjs create mode 100644 actions/setup/js/validate_context_variables.test.cjs diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml index d8b5425059d..37b8a0f62ba 100644 --- a/.github/workflows/ai-moderator.lock.yml +++ b/.github/workflows/ai-moderator.lock.yml @@ -81,6 +81,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/actions/setup/js/validate_context_variables.cjs b/actions/setup/js/validate_context_variables.cjs new file mode 100644 index 00000000000..70686d38adb --- /dev/null +++ b/actions/setup/js/validate_context_variables.cjs @@ -0,0 +1,184 @@ +// @ts-check +/// + +/** + * Validate Context Variables Script + * + * Validates that context variables that should be numeric (like github.event.issue.number) + * are either empty or contain only integers. This prevents malicious payloads from hiding + * special text or code in numeric fields. + * + * Context variables validated: + * - github.event.issue.number + * - github.event.pull_request.number + * - github.event.discussion.number + * - github.event.milestone.number + * - github.event.check_run.number + * - github.event.check_suite.number + * - github.event.workflow_run.number + * - github.event.check_run.id + * - github.event.check_suite.id + * - github.event.comment.id + * - github.event.deployment.id + * - github.event.deployment_status.id + * - github.event.head_commit.id + * - github.event.installation.id + * - github.event.workflow_job.run_id + * - github.event.label.id + * - github.event.milestone.id + * - github.event.organization.id + * - github.event.page.id + * - github.event.project.id + * - github.event.project_card.id + * - github.event.project_column.id + * - github.event.release.id + * - github.event.repository.id + * - github.event.review.id + * - github.event.review_comment.id + * - github.event.sender.id + * - github.event.workflow_run.id + * - github.event.workflow_job.id + * - github.run_id + * - github.run_number + */ + +const { getErrorMessage } = require("./error_helpers.cjs"); + +/** + * List of numeric context variable names + * These correspond to the environment variables passed from the Go compiler + */ +const NUMERIC_CONTEXT_VARS = [ + "ISSUE_NUMBER", + "PULL_REQUEST_NUMBER", + "DISCUSSION_NUMBER", + "MILESTONE_NUMBER", + "CHECK_RUN_NUMBER", + "CHECK_SUITE_NUMBER", + "WORKFLOW_RUN_NUMBER", + "CHECK_RUN_ID", + "CHECK_SUITE_ID", + "COMMENT_ID", + "DEPLOYMENT_ID", + "DEPLOYMENT_STATUS_ID", + "HEAD_COMMIT_ID", + "INSTALLATION_ID", + "WORKFLOW_JOB_RUN_ID", + "LABEL_ID", + "MILESTONE_ID", + "ORGANIZATION_ID", + "PAGE_ID", + "PROJECT_ID", + "PROJECT_CARD_ID", + "PROJECT_COLUMN_ID", + "RELEASE_ID", + "REPOSITORY_ID", + "REVIEW_ID", + "REVIEW_COMMENT_ID", + "SENDER_ID", + "WORKFLOW_RUN_ID", + "WORKFLOW_JOB_ID", + "RUN_ID", + "RUN_NUMBER", +]; + +/** + * Validates that a value is either empty or a valid integer + * @param {string | undefined} value - The value to validate + * @param {string} varName - The variable name for error reporting + * @returns {{valid: boolean, message: string}} Validation result + */ +function validateNumericValue(value, varName) { + // Empty or undefined is valid (field not present) + if (!value || value.trim() === "") { + return { valid: true, message: `${varName} is empty (valid)` }; + } + + // Check if the value is a valid integer (positive or negative) + // Allow only digits, optionally preceded by a minus sign + const isValidInteger = /^-?\d+$/.test(value.trim()); + + if (!isValidInteger) { + return { + valid: false, + message: `${varName} contains non-numeric characters: "${value}"`, + }; + } + + // Additional check: ensure it's within JavaScript's safe integer range + const numValue = parseInt(value.trim(), 10); + if (!Number.isSafeInteger(numValue)) { + return { + valid: false, + message: `${varName} is outside safe integer range: ${value}`, + }; + } + + return { valid: true, message: `${varName} is valid: ${value}` }; +} + +/** + * Main validation function + */ +async function main() { + try { + core.info("Starting context variable validation..."); + + const failures = []; + const warnings = []; + let checkedCount = 0; + + // Validate each numeric context variable + for (const varName of NUMERIC_CONTEXT_VARS) { + const envVarName = `GH_AW_CONTEXT_${varName}`; + const value = process.env[envVarName]; + + // Only validate if the variable is set + if (value !== undefined) { + checkedCount++; + const result = validateNumericValue(value, varName); + + if (result.valid) { + core.info(`✓ ${result.message}`); + } else { + core.error(`✗ ${result.message}`); + failures.push({ + varName, + value, + message: result.message, + }); + } + } + } + + core.info(`Validated ${checkedCount} context variables`); + + // If there are any failures, fail the workflow + if (failures.length > 0) { + const errorMessage = + `Context variable validation failed!\n\n` + + `Found ${failures.length} malicious or invalid numeric field(s):\n\n` + + failures.map(f => ` - ${f.varName}: "${f.value}"\n ${f.message}`).join("\n\n") + + "\n\n" + + "Numeric context variables (like github.event.issue.number) must be either empty or valid integers.\n" + + "This validation prevents injection attacks where special text or code is hidden in numeric fields.\n\n" + + "If you believe this is a false positive, please report it at:\n" + + "https://github.com/github/gh-aw/issues"; + + core.setFailed(errorMessage); + throw new Error(errorMessage); + } + + core.info("✅ All context variables validated successfully"); + } catch (error) { + const errorMessage = getErrorMessage(error); + core.setFailed(`Context variable validation failed: ${errorMessage}`); + throw error; + } +} + +module.exports = { + main, + validateNumericValue, + NUMERIC_CONTEXT_VARS, +}; diff --git a/actions/setup/js/validate_context_variables.test.cjs b/actions/setup/js/validate_context_variables.test.cjs new file mode 100644 index 00000000000..cd0c2b2af96 --- /dev/null +++ b/actions/setup/js/validate_context_variables.test.cjs @@ -0,0 +1,205 @@ +// @ts-check + +import { describe, it, expect, beforeEach, afterEach, vi } from "vitest"; + +describe("validateNumericValue", () => { + let validateNumericValue; + let NUMERIC_CONTEXT_VARS; + + beforeEach(async () => { + const module = await import("./validate_context_variables.cjs"); + validateNumericValue = module.validateNumericValue; + NUMERIC_CONTEXT_VARS = module.NUMERIC_CONTEXT_VARS; + }); + + it("should accept empty values", () => { + const result = validateNumericValue("", "TEST_VAR"); + expect(result.valid).toBe(true); + expect(result.message).toContain("empty"); + }); + + it("should accept undefined values", () => { + const result = validateNumericValue(undefined, "TEST_VAR"); + expect(result.valid).toBe(true); + expect(result.message).toContain("empty"); + }); + + it("should accept whitespace-only values", () => { + const result = validateNumericValue(" ", "TEST_VAR"); + expect(result.valid).toBe(true); + expect(result.message).toContain("empty"); + }); + + it("should accept valid positive integers", () => { + const result = validateNumericValue("12345", "ISSUE_NUMBER"); + expect(result.valid).toBe(true); + expect(result.message).toContain("valid"); + expect(result.message).toContain("12345"); + }); + + it("should accept valid negative integers", () => { + const result = validateNumericValue("-42", "TEST_VAR"); + expect(result.valid).toBe(true); + expect(result.message).toContain("valid"); + }); + + it("should accept zero", () => { + const result = validateNumericValue("0", "TEST_VAR"); + expect(result.valid).toBe(true); + expect(result.message).toContain("valid"); + }); + + it("should accept integers with leading/trailing whitespace", () => { + const result = validateNumericValue(" 42 ", "TEST_VAR"); + expect(result.valid).toBe(true); + expect(result.message).toContain("valid"); + }); + + it("should reject strings with letters", () => { + const result = validateNumericValue("abc123", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject strings with special characters", () => { + const result = validateNumericValue("123$456", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject strings with injection attempts", () => { + const result = validateNumericValue("123; rm -rf /", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject floating point numbers", () => { + const result = validateNumericValue("123.456", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject numbers with commas", () => { + const result = validateNumericValue("1,234", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject scientific notation", () => { + const result = validateNumericValue("1e5", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject hex numbers", () => { + const result = validateNumericValue("0x123", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject octal numbers", () => { + const result = validateNumericValue("0o777", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject binary numbers", () => { + const result = validateNumericValue("0b1010", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject numbers with spaces in the middle", () => { + const result = validateNumericValue("12 34", "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + + it("should reject malicious payloads", () => { + const maliciousPayloads = ["'; DROP TABLE users; --", "", "${7*7}", "{{constructor.constructor('alert(1)')()}}", "../../../etc/passwd", "$(whoami)", "`ls -la`"]; + + maliciousPayloads.forEach(payload => { + const result = validateNumericValue(payload, "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("non-numeric"); + }); + }); + + it("should reject extremely large numbers outside safe integer range", () => { + const tooLarge = "9007199254740992"; // Number.MAX_SAFE_INTEGER + 1 + const result = validateNumericValue(tooLarge, "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("outside safe integer range"); + }); + + it("should reject extremely small numbers outside safe integer range", () => { + const tooSmall = "-9007199254740992"; // Number.MIN_SAFE_INTEGER - 1 + const result = validateNumericValue(tooSmall, "TEST_VAR"); + expect(result.valid).toBe(false); + expect(result.message).toContain("outside safe integer range"); + }); + + it("should accept numbers at the edge of safe integer range", () => { + const maxSafe = "9007199254740991"; // Number.MAX_SAFE_INTEGER + const result = validateNumericValue(maxSafe, "TEST_VAR"); + expect(result.valid).toBe(true); + + const minSafe = "-9007199254740991"; // Number.MIN_SAFE_INTEGER + const result2 = validateNumericValue(minSafe, "TEST_VAR"); + expect(result2.valid).toBe(true); + }); +}); + +describe("NUMERIC_CONTEXT_VARS", () => { + let NUMERIC_CONTEXT_VARS; + + beforeEach(async () => { + const module = await import("./validate_context_variables.cjs"); + NUMERIC_CONTEXT_VARS = module.NUMERIC_CONTEXT_VARS; + }); + + it("should include all expected numeric variables", () => { + const expectedVars = [ + "ISSUE_NUMBER", + "PULL_REQUEST_NUMBER", + "DISCUSSION_NUMBER", + "MILESTONE_NUMBER", + "CHECK_RUN_NUMBER", + "CHECK_SUITE_NUMBER", + "WORKFLOW_RUN_NUMBER", + "CHECK_RUN_ID", + "CHECK_SUITE_ID", + "COMMENT_ID", + "DEPLOYMENT_ID", + "DEPLOYMENT_STATUS_ID", + "HEAD_COMMIT_ID", + "INSTALLATION_ID", + "WORKFLOW_JOB_RUN_ID", + "LABEL_ID", + "MILESTONE_ID", + "ORGANIZATION_ID", + "PAGE_ID", + "PROJECT_ID", + "PROJECT_CARD_ID", + "PROJECT_COLUMN_ID", + "RELEASE_ID", + "REPOSITORY_ID", + "REVIEW_ID", + "REVIEW_COMMENT_ID", + "SENDER_ID", + "WORKFLOW_RUN_ID", + "WORKFLOW_JOB_ID", + "RUN_ID", + "RUN_NUMBER", + ]; + + expectedVars.forEach(varName => { + expect(NUMERIC_CONTEXT_VARS).toContain(varName); + }); + }); + + it("should not include duplicate entries", () => { + const uniqueVars = [...new Set(NUMERIC_CONTEXT_VARS)]; + expect(uniqueVars.length).toBe(NUMERIC_CONTEXT_VARS.length); + }); +}); diff --git a/pkg/workflow/compiler_activation_jobs.go b/pkg/workflow/compiler_activation_jobs.go index 05bc11ca134..d86eb23ba2b 100644 --- a/pkg/workflow/compiler_activation_jobs.go +++ b/pkg/workflow/compiler_activation_jobs.go @@ -459,6 +459,47 @@ func (c *Compiler) buildActivationJob(data *WorkflowData, preActivationJobCreate // Activation job doesn't need project support (no safe outputs processed here) steps = append(steps, c.generateSetupStep(setupActionRef, SetupActionDestination, false)...) + // Add context variable validation step to ensure numeric fields contain only integers + // This prevents malicious payloads from hiding special text or code in numeric fields + steps = append(steps, " - name: Validate context variables\n") + steps = append(steps, fmt.Sprintf(" uses: %s\n", GetActionPin("actions/github-script"))) + steps = append(steps, " env:\n") + // Pass all numeric context variables as environment variables for validation + steps = append(steps, " GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }}\n") + steps = append(steps, " GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}\n") + steps = append(steps, " GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }}\n") + steps = append(steps, " GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }}\n") + steps = append(steps, " GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }}\n") + steps = append(steps, " GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }}\n") + steps = append(steps, " GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }}\n") + steps = append(steps, " GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }}\n") + steps = append(steps, " GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }}\n") + steps = append(steps, " GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }}\n") + steps = append(steps, " GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }}\n") + steps = append(steps, " with:\n") + steps = append(steps, " script: |\n") + steps = append(steps, generateGitHubScriptWithRequire("validate_context_variables.cjs")) + // Checkout .github and .agents folders for accessing workflow configurations and runtime imports // This is needed for prompt generation which may reference runtime imports from .github folder // Always add this checkout in activation job since it needs access to workflow files for runtime imports From 1837003fc0756fe6d4d895791f27e55e4cedf48b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Feb 2026 04:51:56 +0000 Subject: [PATCH 3/5] Recompile workflows with context variable validation Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .../agent-performance-analyzer.lock.yml | 40 +++++++++++++++++++ .../workflows/agent-persona-explorer.lock.yml | 40 +++++++++++++++++++ .github/workflows/archie.lock.yml | 40 +++++++++++++++++++ .github/workflows/artifacts-summary.lock.yml | 40 +++++++++++++++++++ .github/workflows/audit-workflows.lock.yml | 40 +++++++++++++++++++ .github/workflows/auto-triage-issues.lock.yml | 40 +++++++++++++++++++ .github/workflows/blog-auditor.lock.yml | 40 +++++++++++++++++++ .github/workflows/bot-detection.lock.yml | 40 +++++++++++++++++++ .github/workflows/brave.lock.yml | 40 +++++++++++++++++++ .../breaking-change-checker.lock.yml | 40 +++++++++++++++++++ .github/workflows/changeset.lock.yml | 40 +++++++++++++++++++ .../workflows/chroma-issue-indexer.lock.yml | 40 +++++++++++++++++++ .github/workflows/ci-coach.lock.yml | 40 +++++++++++++++++++ .github/workflows/ci-doctor.lock.yml | 40 +++++++++++++++++++ .../claude-code-user-docs-review.lock.yml | 40 +++++++++++++++++++ .../cli-consistency-checker.lock.yml | 40 +++++++++++++++++++ .../workflows/cli-version-checker.lock.yml | 40 +++++++++++++++++++ .github/workflows/cloclo.lock.yml | 40 +++++++++++++++++++ .../workflows/code-scanning-fixer.lock.yml | 40 +++++++++++++++++++ .github/workflows/code-simplifier.lock.yml | 40 +++++++++++++++++++ .../codex-github-remote-mcp-test.lock.yml | 40 +++++++++++++++++++ .../commit-changes-analyzer.lock.yml | 40 +++++++++++++++++++ .github/workflows/contribution-check.lock.yml | 40 +++++++++++++++++++ .../workflows/copilot-agent-analysis.lock.yml | 40 +++++++++++++++++++ .../copilot-cli-deep-research.lock.yml | 40 +++++++++++++++++++ .../copilot-pr-merged-report.lock.yml | 40 +++++++++++++++++++ .../copilot-pr-nlp-analysis.lock.yml | 40 +++++++++++++++++++ .../copilot-pr-prompt-analysis.lock.yml | 40 +++++++++++++++++++ .../copilot-session-insights.lock.yml | 40 +++++++++++++++++++ .github/workflows/craft.lock.yml | 40 +++++++++++++++++++ .../daily-assign-issue-to-user.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-choice-test.lock.yml | 40 +++++++++++++++++++ .../workflows/daily-cli-performance.lock.yml | 40 +++++++++++++++++++ .../workflows/daily-cli-tools-tester.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-code-metrics.lock.yml | 40 +++++++++++++++++++ .../workflows/daily-compiler-quality.lock.yml | 40 +++++++++++++++++++ .../daily-copilot-token-report.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-doc-updater.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-fact.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-file-diet.lock.yml | 40 +++++++++++++++++++ .../workflows/daily-firewall-report.lock.yml | 40 +++++++++++++++++++ .../workflows/daily-issues-report.lock.yml | 40 +++++++++++++++++++ .../daily-malicious-code-scan.lock.yml | 40 +++++++++++++++++++ .../daily-mcp-concurrency-analysis.lock.yml | 40 +++++++++++++++++++ .../daily-multi-device-docs-tester.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-news.lock.yml | 40 +++++++++++++++++++ .../daily-observability-report.lock.yml | 40 +++++++++++++++++++ .../daily-performance-summary.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-regulatory.lock.yml | 40 +++++++++++++++++++ .../workflows/daily-repo-chronicle.lock.yml | 40 +++++++++++++++++++ .../daily-safe-output-optimizer.lock.yml | 40 +++++++++++++++++++ .../daily-safe-outputs-conformance.lock.yml | 40 +++++++++++++++++++ .../workflows/daily-secrets-analysis.lock.yml | 40 +++++++++++++++++++ .../daily-security-red-team.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-semgrep-scan.lock.yml | 40 +++++++++++++++++++ .../daily-syntax-error-quality.lock.yml | 40 +++++++++++++++++++ .../daily-team-evolution-insights.lock.yml | 40 +++++++++++++++++++ .github/workflows/daily-team-status.lock.yml | 40 +++++++++++++++++++ .../daily-testify-uber-super-expert.lock.yml | 40 +++++++++++++++++++ .../workflows/daily-workflow-updater.lock.yml | 40 +++++++++++++++++++ .github/workflows/deep-report.lock.yml | 40 +++++++++++++++++++ .github/workflows/delight.lock.yml | 40 +++++++++++++++++++ .github/workflows/dependabot-burner.lock.yml | 40 +++++++++++++++++++ .../workflows/dependabot-go-checker.lock.yml | 40 +++++++++++++++++++ .github/workflows/dev-hawk.lock.yml | 40 +++++++++++++++++++ .github/workflows/dev.lock.yml | 40 +++++++++++++++++++ .../developer-docs-consolidator.lock.yml | 40 +++++++++++++++++++ .github/workflows/dictation-prompt.lock.yml | 40 +++++++++++++++++++ .../workflows/discussion-task-miner.lock.yml | 40 +++++++++++++++++++ .github/workflows/docs-noob-tester.lock.yml | 40 +++++++++++++++++++ .github/workflows/draft-pr-cleanup.lock.yml | 40 +++++++++++++++++++ .../duplicate-code-detector.lock.yml | 40 +++++++++++++++++++ .../example-custom-error-patterns.lock.yml | 40 +++++++++++++++++++ .../example-permissions-warning.lock.yml | 40 +++++++++++++++++++ .../example-workflow-analyzer.lock.yml | 40 +++++++++++++++++++ .github/workflows/firewall-escape.lock.yml | 40 +++++++++++++++++++ .github/workflows/firewall.lock.yml | 40 +++++++++++++++++++ .../workflows/functional-pragmatist.lock.yml | 40 +++++++++++++++++++ .../github-mcp-structural-analysis.lock.yml | 40 +++++++++++++++++++ .../github-mcp-tools-report.lock.yml | 40 +++++++++++++++++++ .../github-remote-mcp-auth-test.lock.yml | 40 +++++++++++++++++++ .../workflows/glossary-maintainer.lock.yml | 40 +++++++++++++++++++ .github/workflows/go-fan.lock.yml | 40 +++++++++++++++++++ .github/workflows/go-logger.lock.yml | 40 +++++++++++++++++++ .../workflows/go-pattern-detector.lock.yml | 40 +++++++++++++++++++ .github/workflows/gpclean.lock.yml | 40 +++++++++++++++++++ .github/workflows/grumpy-reviewer.lock.yml | 40 +++++++++++++++++++ .github/workflows/hourly-ci-cleaner.lock.yml | 40 +++++++++++++++++++ .../workflows/instructions-janitor.lock.yml | 40 +++++++++++++++++++ .github/workflows/issue-arborist.lock.yml | 40 +++++++++++++++++++ .github/workflows/issue-classifier.lock.yml | 40 +++++++++++++++++++ .github/workflows/issue-monster.lock.yml | 40 +++++++++++++++++++ .github/workflows/issue-triage-agent.lock.yml | 40 +++++++++++++++++++ .github/workflows/jsweep.lock.yml | 40 +++++++++++++++++++ .../workflows/layout-spec-maintainer.lock.yml | 40 +++++++++++++++++++ .github/workflows/lockfile-stats.lock.yml | 40 +++++++++++++++++++ .github/workflows/mcp-inspector.lock.yml | 40 +++++++++++++++++++ .github/workflows/mergefest.lock.yml | 40 +++++++++++++++++++ .github/workflows/metrics-collector.lock.yml | 40 +++++++++++++++++++ .../workflows/notion-issue-summary.lock.yml | 40 +++++++++++++++++++ .github/workflows/org-health-report.lock.yml | 40 +++++++++++++++++++ .github/workflows/pdf-summary.lock.yml | 40 +++++++++++++++++++ .github/workflows/plan.lock.yml | 40 +++++++++++++++++++ .github/workflows/poem-bot.lock.yml | 40 +++++++++++++++++++ .github/workflows/portfolio-analyst.lock.yml | 40 +++++++++++++++++++ .../workflows/pr-nitpick-reviewer.lock.yml | 40 +++++++++++++++++++ .github/workflows/pr-triage-agent.lock.yml | 40 +++++++++++++++++++ .../prompt-clustering-analysis.lock.yml | 40 +++++++++++++++++++ .github/workflows/python-data-charts.lock.yml | 40 +++++++++++++++++++ .github/workflows/q.lock.yml | 40 +++++++++++++++++++ .github/workflows/refiner.lock.yml | 40 +++++++++++++++++++ .github/workflows/release.lock.yml | 40 +++++++++++++++++++ .../workflows/repo-audit-analyzer.lock.yml | 40 +++++++++++++++++++ .github/workflows/repo-tree-map.lock.yml | 40 +++++++++++++++++++ .../repository-quality-improver.lock.yml | 40 +++++++++++++++++++ .github/workflows/research.lock.yml | 40 +++++++++++++++++++ .github/workflows/safe-output-health.lock.yml | 40 +++++++++++++++++++ .../schema-consistency-checker.lock.yml | 40 +++++++++++++++++++ .github/workflows/scout.lock.yml | 40 +++++++++++++++++++ .../workflows/security-compliance.lock.yml | 40 +++++++++++++++++++ .github/workflows/security-review.lock.yml | 40 +++++++++++++++++++ .../semantic-function-refactor.lock.yml | 40 +++++++++++++++++++ .github/workflows/sergo.lock.yml | 40 +++++++++++++++++++ .../workflows/slide-deck-maintainer.lock.yml | 40 +++++++++++++++++++ .github/workflows/smoke-claude.lock.yml | 40 +++++++++++++++++++ .github/workflows/smoke-codex.lock.yml | 40 +++++++++++++++++++ .github/workflows/smoke-copilot-sdk.lock.yml | 40 +++++++++++++++++++ .github/workflows/smoke-copilot.lock.yml | 40 +++++++++++++++++++ .github/workflows/smoke-opencode.lock.yml | 40 +++++++++++++++++++ .github/workflows/smoke-project.lock.yml | 40 +++++++++++++++++++ .github/workflows/smoke-temporary-id.lock.yml | 40 +++++++++++++++++++ .github/workflows/smoke-test-tools.lock.yml | 40 +++++++++++++++++++ .../workflows/stale-repo-identifier.lock.yml | 40 +++++++++++++++++++ .../workflows/static-analysis-report.lock.yml | 40 +++++++++++++++++++ .../workflows/step-name-alignment.lock.yml | 40 +++++++++++++++++++ .github/workflows/sub-issue-closer.lock.yml | 40 +++++++++++++++++++ .github/workflows/super-linter.lock.yml | 40 +++++++++++++++++++ .../workflows/technical-doc-writer.lock.yml | 40 +++++++++++++++++++ .github/workflows/terminal-stylist.lock.yml | 40 +++++++++++++++++++ .../test-create-pr-error-handling.lock.yml | 40 +++++++++++++++++++ .github/workflows/test-dispatcher.lock.yml | 40 +++++++++++++++++++ .../test-project-url-default.lock.yml | 40 +++++++++++++++++++ .github/workflows/test-workflow.lock.yml | 40 +++++++++++++++++++ .github/workflows/tidy.lock.yml | 40 +++++++++++++++++++ .github/workflows/typist.lock.yml | 40 +++++++++++++++++++ .../workflows/ubuntu-image-analyzer.lock.yml | 40 +++++++++++++++++++ .github/workflows/unbloat-docs.lock.yml | 40 +++++++++++++++++++ .github/workflows/video-analyzer.lock.yml | 40 +++++++++++++++++++ .../workflows/weekly-issue-summary.lock.yml | 40 +++++++++++++++++++ .../weekly-safe-outputs-spec-review.lock.yml | 40 +++++++++++++++++++ .github/workflows/workflow-generator.lock.yml | 40 +++++++++++++++++++ .../workflow-health-manager.lock.yml | 40 +++++++++++++++++++ .../workflows/workflow-normalizer.lock.yml | 40 +++++++++++++++++++ .../workflow-skill-extractor.lock.yml | 40 +++++++++++++++++++ 154 files changed, 6160 insertions(+) diff --git a/.github/workflows/agent-performance-analyzer.lock.yml b/.github/workflows/agent-performance-analyzer.lock.yml index 72b796f2b6d..da2e073dbd9 100644 --- a/.github/workflows/agent-performance-analyzer.lock.yml +++ b/.github/workflows/agent-performance-analyzer.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/agent-persona-explorer.lock.yml b/.github/workflows/agent-persona-explorer.lock.yml index 924759353d4..7c379c7db4b 100644 --- a/.github/workflows/agent-persona-explorer.lock.yml +++ b/.github/workflows/agent-persona-explorer.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml index 748f2dbd91a..98943d841cc 100644 --- a/.github/workflows/archie.lock.yml +++ b/.github/workflows/archie.lock.yml @@ -87,6 +87,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml index aa7507d6d9e..60ccd685b7a 100644 --- a/.github/workflows/artifacts-summary.lock.yml +++ b/.github/workflows/artifacts-summary.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml index 24a35966fcf..6366d4e63e6 100644 --- a/.github/workflows/audit-workflows.lock.yml +++ b/.github/workflows/audit-workflows.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/auto-triage-issues.lock.yml b/.github/workflows/auto-triage-issues.lock.yml index 2a5fee14608..000727bb145 100644 --- a/.github/workflows/auto-triage-issues.lock.yml +++ b/.github/workflows/auto-triage-issues.lock.yml @@ -72,6 +72,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml index b8f2799f1c2..ebd3aa2cf66 100644 --- a/.github/workflows/blog-auditor.lock.yml +++ b/.github/workflows/blog-auditor.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/bot-detection.lock.yml b/.github/workflows/bot-detection.lock.yml index 04b17d162ef..c10f3626536 100644 --- a/.github/workflows/bot-detection.lock.yml +++ b/.github/workflows/bot-detection.lock.yml @@ -57,6 +57,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/brave.lock.yml b/.github/workflows/brave.lock.yml index 550608718c1..b0b8535b278 100644 --- a/.github/workflows/brave.lock.yml +++ b/.github/workflows/brave.lock.yml @@ -74,6 +74,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml index 2662e829333..731c72c4541 100644 --- a/.github/workflows/breaking-change-checker.lock.yml +++ b/.github/workflows/breaking-change-checker.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml index bd456ea6c96..43f8355e55a 100644 --- a/.github/workflows/changeset.lock.yml +++ b/.github/workflows/changeset.lock.yml @@ -81,6 +81,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/chroma-issue-indexer.lock.yml b/.github/workflows/chroma-issue-indexer.lock.yml index 622c2ce9706..f24b441b004 100644 --- a/.github/workflows/chroma-issue-indexer.lock.yml +++ b/.github/workflows/chroma-issue-indexer.lock.yml @@ -61,6 +61,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml index 868b9877732..25a5fd7f867 100644 --- a/.github/workflows/ci-coach.lock.yml +++ b/.github/workflows/ci-coach.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index 4d966720d04..1a80b00fde2 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -76,6 +76,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/claude-code-user-docs-review.lock.yml b/.github/workflows/claude-code-user-docs-review.lock.yml index 4cc4afedefd..560809140ad 100644 --- a/.github/workflows/claude-code-user-docs-review.lock.yml +++ b/.github/workflows/claude-code-user-docs-review.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml index ccb12e9ec0e..29c7e911f90 100644 --- a/.github/workflows/cli-consistency-checker.lock.yml +++ b/.github/workflows/cli-consistency-checker.lock.yml @@ -61,6 +61,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml index 9568c69b822..c2442f8c349 100644 --- a/.github/workflows/cli-version-checker.lock.yml +++ b/.github/workflows/cli-version-checker.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml index 1d5f1a35ec8..f036a887b85 100644 --- a/.github/workflows/cloclo.lock.yml +++ b/.github/workflows/cloclo.lock.yml @@ -110,6 +110,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/code-scanning-fixer.lock.yml b/.github/workflows/code-scanning-fixer.lock.yml index a355d083e2a..0cd277e97bc 100644 --- a/.github/workflows/code-scanning-fixer.lock.yml +++ b/.github/workflows/code-scanning-fixer.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/code-simplifier.lock.yml b/.github/workflows/code-simplifier.lock.yml index ca1f07ec2a7..4ee67c82f00 100644 --- a/.github/workflows/code-simplifier.lock.yml +++ b/.github/workflows/code-simplifier.lock.yml @@ -66,6 +66,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/codex-github-remote-mcp-test.lock.yml b/.github/workflows/codex-github-remote-mcp-test.lock.yml index 688cc7b68ef..341c6099b77 100644 --- a/.github/workflows/codex-github-remote-mcp-test.lock.yml +++ b/.github/workflows/codex-github-remote-mcp-test.lock.yml @@ -59,6 +59,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml index abb28ce0f2a..6c315629f3b 100644 --- a/.github/workflows/commit-changes-analyzer.lock.yml +++ b/.github/workflows/commit-changes-analyzer.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/contribution-check.lock.yml b/.github/workflows/contribution-check.lock.yml index 85f1db559bc..a5677e856b2 100644 --- a/.github/workflows/contribution-check.lock.yml +++ b/.github/workflows/contribution-check.lock.yml @@ -60,6 +60,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml index 21ac789e89a..2cade7d05d3 100644 --- a/.github/workflows/copilot-agent-analysis.lock.yml +++ b/.github/workflows/copilot-agent-analysis.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/copilot-cli-deep-research.lock.yml b/.github/workflows/copilot-cli-deep-research.lock.yml index 333cbd0e2f8..9b17e628835 100644 --- a/.github/workflows/copilot-cli-deep-research.lock.yml +++ b/.github/workflows/copilot-cli-deep-research.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml index 06f1e900265..1dff0fd88d3 100644 --- a/.github/workflows/copilot-pr-merged-report.lock.yml +++ b/.github/workflows/copilot-pr-merged-report.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml index 27c1d500543..3637a610fa4 100644 --- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml +++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml index b4cec25b4ae..660266f2ee8 100644 --- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml +++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml index a09ef48279e..867318343ed 100644 --- a/.github/workflows/copilot-session-insights.lock.yml +++ b/.github/workflows/copilot-session-insights.lock.yml @@ -68,6 +68,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml index 8ea46f2b1df..b1270ecb80f 100644 --- a/.github/workflows/craft.lock.yml +++ b/.github/workflows/craft.lock.yml @@ -74,6 +74,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml index 891f8aaf37a..7521d9e429f 100644 --- a/.github/workflows/daily-assign-issue-to-user.lock.yml +++ b/.github/workflows/daily-assign-issue-to-user.lock.yml @@ -61,6 +61,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-choice-test.lock.yml b/.github/workflows/daily-choice-test.lock.yml index ce12ffa7ecc..1d31756c9a4 100644 --- a/.github/workflows/daily-choice-test.lock.yml +++ b/.github/workflows/daily-choice-test.lock.yml @@ -61,6 +61,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-cli-performance.lock.yml b/.github/workflows/daily-cli-performance.lock.yml index ba2e87a938e..ae3aa864eeb 100644 --- a/.github/workflows/daily-cli-performance.lock.yml +++ b/.github/workflows/daily-cli-performance.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-cli-tools-tester.lock.yml b/.github/workflows/daily-cli-tools-tester.lock.yml index 092ff0c4dad..6d7101ecb26 100644 --- a/.github/workflows/daily-cli-tools-tester.lock.yml +++ b/.github/workflows/daily-cli-tools-tester.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml index d6cb3ed571c..fc1c9f082eb 100644 --- a/.github/workflows/daily-code-metrics.lock.yml +++ b/.github/workflows/daily-code-metrics.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-compiler-quality.lock.yml b/.github/workflows/daily-compiler-quality.lock.yml index ca7170cb532..e3cb2b053c7 100644 --- a/.github/workflows/daily-compiler-quality.lock.yml +++ b/.github/workflows/daily-compiler-quality.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-copilot-token-report.lock.yml b/.github/workflows/daily-copilot-token-report.lock.yml index c3eaf6c2ab0..43af13ec3b5 100644 --- a/.github/workflows/daily-copilot-token-report.lock.yml +++ b/.github/workflows/daily-copilot-token-report.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml index bf013b3a8f1..e92cd8ee8da 100644 --- a/.github/workflows/daily-doc-updater.lock.yml +++ b/.github/workflows/daily-doc-updater.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-fact.lock.yml b/.github/workflows/daily-fact.lock.yml index df3df936db2..da5a66cfb86 100644 --- a/.github/workflows/daily-fact.lock.yml +++ b/.github/workflows/daily-fact.lock.yml @@ -55,6 +55,46 @@ jobs: uses: github/gh-aw/actions/setup@c4e091835c7a94dc7d3acb8ed3ae145afb4995f3 # c4e091835c7a94dc7d3acb8ed3ae145afb4995f3 with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Check workflow file timestamps uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 env: diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml index a15e4b506a5..972e82d8dcf 100644 --- a/.github/workflows/daily-file-diet.lock.yml +++ b/.github/workflows/daily-file-diet.lock.yml @@ -66,6 +66,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml index d18ce958a70..02b4bee123e 100644 --- a/.github/workflows/daily-firewall-report.lock.yml +++ b/.github/workflows/daily-firewall-report.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml index 30c9a8d8a40..f6735d5c30e 100644 --- a/.github/workflows/daily-issues-report.lock.yml +++ b/.github/workflows/daily-issues-report.lock.yml @@ -69,6 +69,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml index 05780823372..9ecd1b4fdb3 100644 --- a/.github/workflows/daily-malicious-code-scan.lock.yml +++ b/.github/workflows/daily-malicious-code-scan.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml index 2aba232adcc..c0b75af149f 100644 --- a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml +++ b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml index d46cadb796d..40701cff49a 100644 --- a/.github/workflows/daily-multi-device-docs-tester.lock.yml +++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml @@ -69,6 +69,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml index d5b092ea1fd..d8e2a44be6a 100644 --- a/.github/workflows/daily-news.lock.yml +++ b/.github/workflows/daily-news.lock.yml @@ -66,6 +66,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-observability-report.lock.yml b/.github/workflows/daily-observability-report.lock.yml index 48f664ba8b6..0f566a87172 100644 --- a/.github/workflows/daily-observability-report.lock.yml +++ b/.github/workflows/daily-observability-report.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml index d76c5bf6f6a..342e83b9508 100644 --- a/.github/workflows/daily-performance-summary.lock.yml +++ b/.github/workflows/daily-performance-summary.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-regulatory.lock.yml b/.github/workflows/daily-regulatory.lock.yml index 862a1361176..bcbd4be1c32 100644 --- a/.github/workflows/daily-regulatory.lock.yml +++ b/.github/workflows/daily-regulatory.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml index c8c349d6fb6..92f4f5350cd 100644 --- a/.github/workflows/daily-repo-chronicle.lock.yml +++ b/.github/workflows/daily-repo-chronicle.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-safe-output-optimizer.lock.yml b/.github/workflows/daily-safe-output-optimizer.lock.yml index 8a97f8598e4..232b77d7cfb 100644 --- a/.github/workflows/daily-safe-output-optimizer.lock.yml +++ b/.github/workflows/daily-safe-output-optimizer.lock.yml @@ -67,6 +67,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-safe-outputs-conformance.lock.yml b/.github/workflows/daily-safe-outputs-conformance.lock.yml index 9ae71838078..eec37aa4ccd 100644 --- a/.github/workflows/daily-safe-outputs-conformance.lock.yml +++ b/.github/workflows/daily-safe-outputs-conformance.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-secrets-analysis.lock.yml b/.github/workflows/daily-secrets-analysis.lock.yml index b30611fed21..0b93e170577 100644 --- a/.github/workflows/daily-secrets-analysis.lock.yml +++ b/.github/workflows/daily-secrets-analysis.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-security-red-team.lock.yml b/.github/workflows/daily-security-red-team.lock.yml index 07d24741382..782b99562a8 100644 --- a/.github/workflows/daily-security-red-team.lock.yml +++ b/.github/workflows/daily-security-red-team.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-semgrep-scan.lock.yml b/.github/workflows/daily-semgrep-scan.lock.yml index 527a6b6f5fa..1f0f43476d5 100644 --- a/.github/workflows/daily-semgrep-scan.lock.yml +++ b/.github/workflows/daily-semgrep-scan.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-syntax-error-quality.lock.yml b/.github/workflows/daily-syntax-error-quality.lock.yml index ad012df711c..53bf01e9997 100644 --- a/.github/workflows/daily-syntax-error-quality.lock.yml +++ b/.github/workflows/daily-syntax-error-quality.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-team-evolution-insights.lock.yml b/.github/workflows/daily-team-evolution-insights.lock.yml index f6ef8499d79..0667d9f804a 100644 --- a/.github/workflows/daily-team-evolution-insights.lock.yml +++ b/.github/workflows/daily-team-evolution-insights.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml index 09173606674..a6a0e0d687f 100644 --- a/.github/workflows/daily-team-status.lock.yml +++ b/.github/workflows/daily-team-status.lock.yml @@ -72,6 +72,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-testify-uber-super-expert.lock.yml b/.github/workflows/daily-testify-uber-super-expert.lock.yml index 8d89b37cc60..9b2ca8d0aca 100644 --- a/.github/workflows/daily-testify-uber-super-expert.lock.yml +++ b/.github/workflows/daily-testify-uber-super-expert.lock.yml @@ -67,6 +67,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml index 3ea43ab8c02..c36cb1588c5 100644 --- a/.github/workflows/daily-workflow-updater.lock.yml +++ b/.github/workflows/daily-workflow-updater.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml index 4ff74a75ec2..95b3b888671 100644 --- a/.github/workflows/deep-report.lock.yml +++ b/.github/workflows/deep-report.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/delight.lock.yml b/.github/workflows/delight.lock.yml index 774198f7135..54ca3d35fa3 100644 --- a/.github/workflows/delight.lock.yml +++ b/.github/workflows/delight.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/dependabot-burner.lock.yml b/.github/workflows/dependabot-burner.lock.yml index c5759e2300c..f2e9215929a 100644 --- a/.github/workflows/dependabot-burner.lock.yml +++ b/.github/workflows/dependabot-burner.lock.yml @@ -59,6 +59,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml index bb9d6e7cd7e..fa5b9d4f718 100644 --- a/.github/workflows/dependabot-go-checker.lock.yml +++ b/.github/workflows/dependabot-go-checker.lock.yml @@ -61,6 +61,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml index 1a6b6115ab3..2c69c9cd19e 100644 --- a/.github/workflows/dev-hawk.lock.yml +++ b/.github/workflows/dev-hawk.lock.yml @@ -72,6 +72,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml index 8c5454c42fd..25005b6bdfb 100644 --- a/.github/workflows/dev.lock.yml +++ b/.github/workflows/dev.lock.yml @@ -61,6 +61,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml index fa4b7f49317..338dac6cf03 100644 --- a/.github/workflows/developer-docs-consolidator.lock.yml +++ b/.github/workflows/developer-docs-consolidator.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml index bdb19b18f36..6e85e4e24dc 100644 --- a/.github/workflows/dictation-prompt.lock.yml +++ b/.github/workflows/dictation-prompt.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/discussion-task-miner.lock.yml b/.github/workflows/discussion-task-miner.lock.yml index b4c31881379..8927b0dd131 100644 --- a/.github/workflows/discussion-task-miner.lock.yml +++ b/.github/workflows/discussion-task-miner.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml index 0d5042a8d90..223131fedcd 100644 --- a/.github/workflows/docs-noob-tester.lock.yml +++ b/.github/workflows/docs-noob-tester.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/draft-pr-cleanup.lock.yml b/.github/workflows/draft-pr-cleanup.lock.yml index e631b352372..90c8b87dff6 100644 --- a/.github/workflows/draft-pr-cleanup.lock.yml +++ b/.github/workflows/draft-pr-cleanup.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml index 4c3080d08ec..ffb7c01929b 100644 --- a/.github/workflows/duplicate-code-detector.lock.yml +++ b/.github/workflows/duplicate-code-detector.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/example-custom-error-patterns.lock.yml b/.github/workflows/example-custom-error-patterns.lock.yml index 76c9adc249e..31f95362a64 100644 --- a/.github/workflows/example-custom-error-patterns.lock.yml +++ b/.github/workflows/example-custom-error-patterns.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml index 867b65e2baa..d5b833ae278 100644 --- a/.github/workflows/example-permissions-warning.lock.yml +++ b/.github/workflows/example-permissions-warning.lock.yml @@ -59,6 +59,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml index 5281a88e95e..52444f3d5f8 100644 --- a/.github/workflows/example-workflow-analyzer.lock.yml +++ b/.github/workflows/example-workflow-analyzer.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml index eaaaa5da1c3..6f3afb9d649 100644 --- a/.github/workflows/firewall-escape.lock.yml +++ b/.github/workflows/firewall-escape.lock.yml @@ -75,6 +75,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml index c559e62228f..77855eeb624 100644 --- a/.github/workflows/firewall.lock.yml +++ b/.github/workflows/firewall.lock.yml @@ -59,6 +59,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/functional-pragmatist.lock.yml b/.github/workflows/functional-pragmatist.lock.yml index 8ef4b0fef1c..080dd8e4e33 100644 --- a/.github/workflows/functional-pragmatist.lock.yml +++ b/.github/workflows/functional-pragmatist.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml index d227b47b9ff..c28b3fd10c5 100644 --- a/.github/workflows/github-mcp-structural-analysis.lock.yml +++ b/.github/workflows/github-mcp-structural-analysis.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml index 7b46f0e300d..87d402ccee4 100644 --- a/.github/workflows/github-mcp-tools-report.lock.yml +++ b/.github/workflows/github-mcp-tools-report.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/github-remote-mcp-auth-test.lock.yml b/.github/workflows/github-remote-mcp-auth-test.lock.yml index 1393247d04f..15d158b59f1 100644 --- a/.github/workflows/github-remote-mcp-auth-test.lock.yml +++ b/.github/workflows/github-remote-mcp-auth-test.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml index 567242497d2..b3fb0aa5bfa 100644 --- a/.github/workflows/glossary-maintainer.lock.yml +++ b/.github/workflows/glossary-maintainer.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml index f01475a47d4..981c37cbf41 100644 --- a/.github/workflows/go-fan.lock.yml +++ b/.github/workflows/go-fan.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml index ee5cd2e6ea8..b26cffa3e96 100644 --- a/.github/workflows/go-logger.lock.yml +++ b/.github/workflows/go-logger.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml index 8b049dc0dd9..33a5cfd37da 100644 --- a/.github/workflows/go-pattern-detector.lock.yml +++ b/.github/workflows/go-pattern-detector.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/gpclean.lock.yml b/.github/workflows/gpclean.lock.yml index 1b7e5fd1893..09f14c0c3df 100644 --- a/.github/workflows/gpclean.lock.yml +++ b/.github/workflows/gpclean.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml index 5a3128ee0c6..2f1245523c8 100644 --- a/.github/workflows/grumpy-reviewer.lock.yml +++ b/.github/workflows/grumpy-reviewer.lock.yml @@ -78,6 +78,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml index 18090c7abf2..781f07e2001 100644 --- a/.github/workflows/hourly-ci-cleaner.lock.yml +++ b/.github/workflows/hourly-ci-cleaner.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml index 04c4f8a8f3d..1b6759244db 100644 --- a/.github/workflows/instructions-janitor.lock.yml +++ b/.github/workflows/instructions-janitor.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml index e36b60dbe49..0cf111c4e2c 100644 --- a/.github/workflows/issue-arborist.lock.yml +++ b/.github/workflows/issue-arborist.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/issue-classifier.lock.yml b/.github/workflows/issue-classifier.lock.yml index 5ef20f6e099..d2db246a4bd 100644 --- a/.github/workflows/issue-classifier.lock.yml +++ b/.github/workflows/issue-classifier.lock.yml @@ -70,6 +70,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml index 6d6a0885bc1..d0cd32c8bb2 100644 --- a/.github/workflows/issue-monster.lock.yml +++ b/.github/workflows/issue-monster.lock.yml @@ -70,6 +70,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index c6d03da5dff..e91363a61bc 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -61,6 +61,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Check workflow file timestamps uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 env: diff --git a/.github/workflows/jsweep.lock.yml b/.github/workflows/jsweep.lock.yml index 712e0618b56..7790c778e14 100644 --- a/.github/workflows/jsweep.lock.yml +++ b/.github/workflows/jsweep.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index 278a5afebf4..04c7faa8316 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml index 638aa52ecaf..954903d3085 100644 --- a/.github/workflows/lockfile-stats.lock.yml +++ b/.github/workflows/lockfile-stats.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml index ebe2eae3103..f28c38180db 100644 --- a/.github/workflows/mcp-inspector.lock.yml +++ b/.github/workflows/mcp-inspector.lock.yml @@ -77,6 +77,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml index 08240a4986e..16ede26e462 100644 --- a/.github/workflows/mergefest.lock.yml +++ b/.github/workflows/mergefest.lock.yml @@ -73,6 +73,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/metrics-collector.lock.yml b/.github/workflows/metrics-collector.lock.yml index aa1dc34fab3..854dff515ae 100644 --- a/.github/workflows/metrics-collector.lock.yml +++ b/.github/workflows/metrics-collector.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml index 904b294f19d..13918073d15 100644 --- a/.github/workflows/notion-issue-summary.lock.yml +++ b/.github/workflows/notion-issue-summary.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml index 57e434ce9fb..8359a599046 100644 --- a/.github/workflows/org-health-report.lock.yml +++ b/.github/workflows/org-health-report.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml index 4ce6c9430e8..0a643a35983 100644 --- a/.github/workflows/pdf-summary.lock.yml +++ b/.github/workflows/pdf-summary.lock.yml @@ -93,6 +93,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml index 0b0fd074507..47c9ab8c53d 100644 --- a/.github/workflows/plan.lock.yml +++ b/.github/workflows/plan.lock.yml @@ -78,6 +78,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml index e2efdb141bb..a2367b556ec 100644 --- a/.github/workflows/poem-bot.lock.yml +++ b/.github/workflows/poem-bot.lock.yml @@ -82,6 +82,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml index cf4789fcd04..a4ce70548c9 100644 --- a/.github/workflows/portfolio-analyst.lock.yml +++ b/.github/workflows/portfolio-analyst.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml index cd9e91a8cf4..dc2f20fded6 100644 --- a/.github/workflows/pr-nitpick-reviewer.lock.yml +++ b/.github/workflows/pr-nitpick-reviewer.lock.yml @@ -103,6 +103,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/pr-triage-agent.lock.yml b/.github/workflows/pr-triage-agent.lock.yml index 28352f7854e..51d3732e769 100644 --- a/.github/workflows/pr-triage-agent.lock.yml +++ b/.github/workflows/pr-triage-agent.lock.yml @@ -61,6 +61,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml index bda65ba5726..ec7dfb90d83 100644 --- a/.github/workflows/prompt-clustering-analysis.lock.yml +++ b/.github/workflows/prompt-clustering-analysis.lock.yml @@ -68,6 +68,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml index 11eb644989a..08e883d8f6e 100644 --- a/.github/workflows/python-data-charts.lock.yml +++ b/.github/workflows/python-data-charts.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml index f663c462d65..b918635f638 100644 --- a/.github/workflows/q.lock.yml +++ b/.github/workflows/q.lock.yml @@ -102,6 +102,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/refiner.lock.yml b/.github/workflows/refiner.lock.yml index bac192a794c..ad0160b6d50 100644 --- a/.github/workflows/refiner.lock.yml +++ b/.github/workflows/refiner.lock.yml @@ -77,6 +77,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index 896df085452..b5cc92bc8c8 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -70,6 +70,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/repo-audit-analyzer.lock.yml b/.github/workflows/repo-audit-analyzer.lock.yml index 734a19184a8..af201bb3031 100644 --- a/.github/workflows/repo-audit-analyzer.lock.yml +++ b/.github/workflows/repo-audit-analyzer.lock.yml @@ -66,6 +66,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml index 36eb4d0f3a3..cb1629e1f35 100644 --- a/.github/workflows/repo-tree-map.lock.yml +++ b/.github/workflows/repo-tree-map.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml index f2f51472b58..fa0e0d50bb1 100644 --- a/.github/workflows/repository-quality-improver.lock.yml +++ b/.github/workflows/repository-quality-improver.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml index e9fe8d86da3..f7b85cfbb39 100644 --- a/.github/workflows/research.lock.yml +++ b/.github/workflows/research.lock.yml @@ -66,6 +66,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml index d0fa46e4e06..008cb9e850f 100644 --- a/.github/workflows/safe-output-health.lock.yml +++ b/.github/workflows/safe-output-health.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml index f42b6af393b..63b3455968a 100644 --- a/.github/workflows/schema-consistency-checker.lock.yml +++ b/.github/workflows/schema-consistency-checker.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml index 6b2c8cb1d71..651c201556c 100644 --- a/.github/workflows/scout.lock.yml +++ b/.github/workflows/scout.lock.yml @@ -118,6 +118,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/security-compliance.lock.yml b/.github/workflows/security-compliance.lock.yml index acfe23506ee..835504319fc 100644 --- a/.github/workflows/security-compliance.lock.yml +++ b/.github/workflows/security-compliance.lock.yml @@ -74,6 +74,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/security-review.lock.yml b/.github/workflows/security-review.lock.yml index 917a5fc5ece..fa7bfac752a 100644 --- a/.github/workflows/security-review.lock.yml +++ b/.github/workflows/security-review.lock.yml @@ -78,6 +78,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml index 220c42bc7a8..7742292e734 100644 --- a/.github/workflows/semantic-function-refactor.lock.yml +++ b/.github/workflows/semantic-function-refactor.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/sergo.lock.yml b/.github/workflows/sergo.lock.yml index bc61f41d8ed..a2bae54c720 100644 --- a/.github/workflows/sergo.lock.yml +++ b/.github/workflows/sergo.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index 6344fbe4c3f..2480e101506 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -69,6 +69,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index ed228c9e25a..49589bcd30f 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -84,6 +84,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml index 3c9b1991b88..fc10bd90c31 100644 --- a/.github/workflows/smoke-codex.lock.yml +++ b/.github/workflows/smoke-codex.lock.yml @@ -79,6 +79,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/smoke-copilot-sdk.lock.yml b/.github/workflows/smoke-copilot-sdk.lock.yml index a3a0fd9d0f6..c3223709c04 100644 --- a/.github/workflows/smoke-copilot-sdk.lock.yml +++ b/.github/workflows/smoke-copilot-sdk.lock.yml @@ -77,6 +77,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml index aea47da7c91..84d011f9c2d 100644 --- a/.github/workflows/smoke-copilot.lock.yml +++ b/.github/workflows/smoke-copilot.lock.yml @@ -80,6 +80,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/smoke-opencode.lock.yml b/.github/workflows/smoke-opencode.lock.yml index 3d45c2fa939..275b8977332 100644 --- a/.github/workflows/smoke-opencode.lock.yml +++ b/.github/workflows/smoke-opencode.lock.yml @@ -80,6 +80,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/smoke-project.lock.yml b/.github/workflows/smoke-project.lock.yml index 5f4c68a7602..405a4f13cf2 100644 --- a/.github/workflows/smoke-project.lock.yml +++ b/.github/workflows/smoke-project.lock.yml @@ -72,6 +72,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/smoke-temporary-id.lock.yml b/.github/workflows/smoke-temporary-id.lock.yml index f7cac5d6e66..b21547a28fe 100644 --- a/.github/workflows/smoke-temporary-id.lock.yml +++ b/.github/workflows/smoke-temporary-id.lock.yml @@ -72,6 +72,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/smoke-test-tools.lock.yml b/.github/workflows/smoke-test-tools.lock.yml index 67043453878..a535ed5d3f2 100644 --- a/.github/workflows/smoke-test-tools.lock.yml +++ b/.github/workflows/smoke-test-tools.lock.yml @@ -71,6 +71,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index 59e9cfe3da0..19f15bcfeed 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -73,6 +73,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml index d1e4af5f40e..78b04a0ebfa 100644 --- a/.github/workflows/static-analysis-report.lock.yml +++ b/.github/workflows/static-analysis-report.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/step-name-alignment.lock.yml b/.github/workflows/step-name-alignment.lock.yml index 08e6557b01b..a799d9cb77e 100644 --- a/.github/workflows/step-name-alignment.lock.yml +++ b/.github/workflows/step-name-alignment.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/sub-issue-closer.lock.yml b/.github/workflows/sub-issue-closer.lock.yml index 37b5f5da5a7..51185435fd5 100644 --- a/.github/workflows/sub-issue-closer.lock.yml +++ b/.github/workflows/sub-issue-closer.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml index ca6a7b556d7..67ec3831515 100644 --- a/.github/workflows/super-linter.lock.yml +++ b/.github/workflows/super-linter.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml index 18789653701..a43946a0748 100644 --- a/.github/workflows/technical-doc-writer.lock.yml +++ b/.github/workflows/technical-doc-writer.lock.yml @@ -66,6 +66,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/terminal-stylist.lock.yml b/.github/workflows/terminal-stylist.lock.yml index 80513881083..e015249937a 100644 --- a/.github/workflows/terminal-stylist.lock.yml +++ b/.github/workflows/terminal-stylist.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/test-create-pr-error-handling.lock.yml b/.github/workflows/test-create-pr-error-handling.lock.yml index 993e719973a..093b599a911 100644 --- a/.github/workflows/test-create-pr-error-handling.lock.yml +++ b/.github/workflows/test-create-pr-error-handling.lock.yml @@ -59,6 +59,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/test-dispatcher.lock.yml b/.github/workflows/test-dispatcher.lock.yml index 6e2769dbaac..bbead1dfad4 100644 --- a/.github/workflows/test-dispatcher.lock.yml +++ b/.github/workflows/test-dispatcher.lock.yml @@ -58,6 +58,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/test-project-url-default.lock.yml b/.github/workflows/test-project-url-default.lock.yml index 11396496300..9f055b7df1d 100644 --- a/.github/workflows/test-project-url-default.lock.yml +++ b/.github/workflows/test-project-url-default.lock.yml @@ -58,6 +58,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/test-workflow.lock.yml b/.github/workflows/test-workflow.lock.yml index 5a67bf79bcf..48c0554f6fa 100644 --- a/.github/workflows/test-workflow.lock.yml +++ b/.github/workflows/test-workflow.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml index 1e9b042ce8b..da3b5e7d88c 100644 --- a/.github/workflows/tidy.lock.yml +++ b/.github/workflows/tidy.lock.yml @@ -86,6 +86,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml index c125dba0836..5bbe8b78f73 100644 --- a/.github/workflows/typist.lock.yml +++ b/.github/workflows/typist.lock.yml @@ -62,6 +62,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/ubuntu-image-analyzer.lock.yml b/.github/workflows/ubuntu-image-analyzer.lock.yml index d0ecb36b28e..e92506bfab6 100644 --- a/.github/workflows/ubuntu-image-analyzer.lock.yml +++ b/.github/workflows/ubuntu-image-analyzer.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml index 27317da4d32..dafed2d4123 100644 --- a/.github/workflows/unbloat-docs.lock.yml +++ b/.github/workflows/unbloat-docs.lock.yml @@ -79,6 +79,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml index 5b5b5178e53..8ffba642f7d 100644 --- a/.github/workflows/video-analyzer.lock.yml +++ b/.github/workflows/video-analyzer.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml index dd36da0c380..a5481a44e73 100644 --- a/.github/workflows/weekly-issue-summary.lock.yml +++ b/.github/workflows/weekly-issue-summary.lock.yml @@ -64,6 +64,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Check workflow file timestamps uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 env: diff --git a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml index d64431be1e5..aeb02da431f 100644 --- a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml +++ b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml @@ -58,6 +58,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/workflow-generator.lock.yml b/.github/workflows/workflow-generator.lock.yml index 8a838856f15..5ba8e38e80a 100644 --- a/.github/workflows/workflow-generator.lock.yml +++ b/.github/workflows/workflow-generator.lock.yml @@ -71,6 +71,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/workflow-health-manager.lock.yml b/.github/workflows/workflow-health-manager.lock.yml index 00e7a2128d5..f9429dac8cd 100644 --- a/.github/workflows/workflow-health-manager.lock.yml +++ b/.github/workflows/workflow-health-manager.lock.yml @@ -65,6 +65,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/workflow-normalizer.lock.yml b/.github/workflows/workflow-normalizer.lock.yml index 8a2b3b47810..3a00d5858d7 100644 --- a/.github/workflows/workflow-normalizer.lock.yml +++ b/.github/workflows/workflow-normalizer.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: diff --git a/.github/workflows/workflow-skill-extractor.lock.yml b/.github/workflows/workflow-skill-extractor.lock.yml index 95a608fe50a..af1dc2d4213 100644 --- a/.github/workflows/workflow-skill-extractor.lock.yml +++ b/.github/workflows/workflow-skill-extractor.lock.yml @@ -63,6 +63,46 @@ jobs: uses: ./actions/setup with: destination: /opt/gh-aw/actions + - name: Validate context variables + uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 + env: + GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} + GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} + GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} + GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} + GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} + GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} + GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} + GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} + GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} + GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} + GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} + GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} + GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} + GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} + GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} + GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} + GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} + GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} + GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} + GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} + GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} + GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} + GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} + GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} + GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} + GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} + GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} + GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} + GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} + GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} + with: + script: | + const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); + setupGlobals(core, github, context, exec, io); + const { main } = require('/opt/gh-aw/actions/validate_context_variables.cjs'); + await main(); - name: Checkout .github and .agents folders uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: From 0a46b687b59302f7c54f749c6813cb4d3db22d59 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Feb 2026 05:09:22 +0000 Subject: [PATCH 4/5] Read context variables directly instead of using env vars Changed validation to read from context object directly as requested. - Remove all environment variable passing from Go compiler - Update JavaScript to access context.payload and context directly - Add getNestedValue helper to traverse context object - Update tests to work with new implementation Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .../agent-performance-analyzer.lock.yml | 32 --- .../workflows/agent-persona-explorer.lock.yml | 32 --- .github/workflows/ai-moderator.lock.yml | 32 --- .github/workflows/archie.lock.yml | 32 --- .github/workflows/artifacts-summary.lock.yml | 32 --- .github/workflows/audit-workflows.lock.yml | 32 --- .github/workflows/auto-triage-issues.lock.yml | 32 --- .github/workflows/blog-auditor.lock.yml | 32 --- .github/workflows/bot-detection.lock.yml | 32 --- .github/workflows/brave.lock.yml | 32 --- .../breaking-change-checker.lock.yml | 32 --- .github/workflows/changeset.lock.yml | 32 --- .../workflows/chroma-issue-indexer.lock.yml | 32 --- .github/workflows/ci-coach.lock.yml | 32 --- .github/workflows/ci-doctor.lock.yml | 32 --- .../claude-code-user-docs-review.lock.yml | 32 --- .../cli-consistency-checker.lock.yml | 32 --- .../workflows/cli-version-checker.lock.yml | 32 --- .github/workflows/cloclo.lock.yml | 32 --- .../workflows/code-scanning-fixer.lock.yml | 32 --- .github/workflows/code-simplifier.lock.yml | 32 --- .../codex-github-remote-mcp-test.lock.yml | 32 --- .../commit-changes-analyzer.lock.yml | 32 --- .github/workflows/contribution-check.lock.yml | 32 --- .../workflows/copilot-agent-analysis.lock.yml | 32 --- .../copilot-cli-deep-research.lock.yml | 32 --- .../copilot-pr-merged-report.lock.yml | 32 --- .../copilot-pr-nlp-analysis.lock.yml | 32 --- .../copilot-pr-prompt-analysis.lock.yml | 32 --- .../copilot-session-insights.lock.yml | 32 --- .github/workflows/craft.lock.yml | 32 --- .../daily-assign-issue-to-user.lock.yml | 32 --- .github/workflows/daily-choice-test.lock.yml | 32 --- .../workflows/daily-cli-performance.lock.yml | 32 --- .../workflows/daily-cli-tools-tester.lock.yml | 32 --- .github/workflows/daily-code-metrics.lock.yml | 32 --- .../workflows/daily-compiler-quality.lock.yml | 32 --- .../daily-copilot-token-report.lock.yml | 32 --- .github/workflows/daily-doc-updater.lock.yml | 32 --- .github/workflows/daily-fact.lock.yml | 32 --- .github/workflows/daily-file-diet.lock.yml | 32 --- .../workflows/daily-firewall-report.lock.yml | 32 --- .../workflows/daily-issues-report.lock.yml | 32 --- .../daily-malicious-code-scan.lock.yml | 32 --- .../daily-mcp-concurrency-analysis.lock.yml | 32 --- .../daily-multi-device-docs-tester.lock.yml | 32 --- .github/workflows/daily-news.lock.yml | 32 --- .../daily-observability-report.lock.yml | 32 --- .../daily-performance-summary.lock.yml | 32 --- .github/workflows/daily-regulatory.lock.yml | 32 --- .../workflows/daily-repo-chronicle.lock.yml | 32 --- .../daily-safe-output-optimizer.lock.yml | 32 --- .../daily-safe-outputs-conformance.lock.yml | 32 --- .../workflows/daily-secrets-analysis.lock.yml | 32 --- .../daily-security-red-team.lock.yml | 32 --- .github/workflows/daily-semgrep-scan.lock.yml | 32 --- .../daily-syntax-error-quality.lock.yml | 32 --- .../daily-team-evolution-insights.lock.yml | 32 --- .github/workflows/daily-team-status.lock.yml | 32 --- .../daily-testify-uber-super-expert.lock.yml | 32 --- .../workflows/daily-workflow-updater.lock.yml | 32 --- .github/workflows/deep-report.lock.yml | 32 --- .github/workflows/delight.lock.yml | 32 --- .github/workflows/dependabot-burner.lock.yml | 32 --- .../workflows/dependabot-go-checker.lock.yml | 32 --- .github/workflows/dev-hawk.lock.yml | 32 --- .github/workflows/dev.lock.yml | 32 --- .../developer-docs-consolidator.lock.yml | 32 --- .github/workflows/dictation-prompt.lock.yml | 32 --- .../workflows/discussion-task-miner.lock.yml | 32 --- .github/workflows/docs-noob-tester.lock.yml | 32 --- .github/workflows/draft-pr-cleanup.lock.yml | 32 --- .../duplicate-code-detector.lock.yml | 32 --- .../example-custom-error-patterns.lock.yml | 32 --- .../example-permissions-warning.lock.yml | 32 --- .../example-workflow-analyzer.lock.yml | 32 --- .github/workflows/firewall-escape.lock.yml | 32 --- .github/workflows/firewall.lock.yml | 32 --- .../workflows/functional-pragmatist.lock.yml | 32 --- .../github-mcp-structural-analysis.lock.yml | 32 --- .../github-mcp-tools-report.lock.yml | 32 --- .../github-remote-mcp-auth-test.lock.yml | 32 --- .../workflows/glossary-maintainer.lock.yml | 32 --- .github/workflows/go-fan.lock.yml | 32 --- .github/workflows/go-logger.lock.yml | 32 --- .../workflows/go-pattern-detector.lock.yml | 32 --- .github/workflows/gpclean.lock.yml | 32 --- .github/workflows/grumpy-reviewer.lock.yml | 32 --- .github/workflows/hourly-ci-cleaner.lock.yml | 32 --- .../workflows/instructions-janitor.lock.yml | 32 --- .github/workflows/issue-arborist.lock.yml | 32 --- .github/workflows/issue-classifier.lock.yml | 32 --- .github/workflows/issue-monster.lock.yml | 32 --- .github/workflows/issue-triage-agent.lock.yml | 32 --- .github/workflows/jsweep.lock.yml | 32 --- .../workflows/layout-spec-maintainer.lock.yml | 32 --- .github/workflows/lockfile-stats.lock.yml | 32 --- .github/workflows/mcp-inspector.lock.yml | 32 --- .github/workflows/mergefest.lock.yml | 32 --- .github/workflows/metrics-collector.lock.yml | 32 --- .../workflows/notion-issue-summary.lock.yml | 32 --- .github/workflows/org-health-report.lock.yml | 32 --- .github/workflows/pdf-summary.lock.yml | 32 --- .github/workflows/plan.lock.yml | 32 --- .github/workflows/poem-bot.lock.yml | 32 --- .github/workflows/portfolio-analyst.lock.yml | 32 --- .../workflows/pr-nitpick-reviewer.lock.yml | 32 --- .github/workflows/pr-triage-agent.lock.yml | 32 --- .../prompt-clustering-analysis.lock.yml | 32 --- .github/workflows/python-data-charts.lock.yml | 32 --- .github/workflows/q.lock.yml | 32 --- .github/workflows/refiner.lock.yml | 32 --- .github/workflows/release.lock.yml | 32 --- .../workflows/repo-audit-analyzer.lock.yml | 32 --- .github/workflows/repo-tree-map.lock.yml | 32 --- .../repository-quality-improver.lock.yml | 32 --- .github/workflows/research.lock.yml | 32 --- .github/workflows/safe-output-health.lock.yml | 32 --- .../schema-consistency-checker.lock.yml | 32 --- .github/workflows/scout.lock.yml | 32 --- .../workflows/security-compliance.lock.yml | 32 --- .github/workflows/security-review.lock.yml | 32 --- .../semantic-function-refactor.lock.yml | 32 --- .github/workflows/sergo.lock.yml | 32 --- .../workflows/slide-deck-maintainer.lock.yml | 32 --- .github/workflows/smoke-claude.lock.yml | 32 --- .github/workflows/smoke-codex.lock.yml | 32 --- .github/workflows/smoke-copilot-sdk.lock.yml | 32 --- .github/workflows/smoke-copilot.lock.yml | 32 --- .github/workflows/smoke-opencode.lock.yml | 32 --- .github/workflows/smoke-project.lock.yml | 32 --- .github/workflows/smoke-temporary-id.lock.yml | 32 --- .github/workflows/smoke-test-tools.lock.yml | 32 --- .../workflows/stale-repo-identifier.lock.yml | 32 --- .../workflows/static-analysis-report.lock.yml | 32 --- .../workflows/step-name-alignment.lock.yml | 32 --- .github/workflows/sub-issue-closer.lock.yml | 32 --- .github/workflows/super-linter.lock.yml | 32 --- .../workflows/technical-doc-writer.lock.yml | 32 --- .github/workflows/terminal-stylist.lock.yml | 32 --- .../test-create-pr-error-handling.lock.yml | 32 --- .github/workflows/test-dispatcher.lock.yml | 32 --- .../test-project-url-default.lock.yml | 32 --- .github/workflows/test-workflow.lock.yml | 32 --- .github/workflows/tidy.lock.yml | 32 --- .github/workflows/typist.lock.yml | 32 --- .../workflows/ubuntu-image-analyzer.lock.yml | 32 --- .github/workflows/unbloat-docs.lock.yml | 32 --- .github/workflows/video-analyzer.lock.yml | 32 --- .../workflows/weekly-issue-summary.lock.yml | 32 --- .../weekly-safe-outputs-spec-review.lock.yml | 32 --- .github/workflows/workflow-generator.lock.yml | 32 --- .../workflow-health-manager.lock.yml | 32 --- .../workflows/workflow-normalizer.lock.yml | 32 --- .../workflow-skill-extractor.lock.yml | 32 --- .../setup/js/validate_context_variables.cjs | 123 +++++++----- .../js/validate_context_variables.test.cjs | 188 +++++++++++++----- pkg/workflow/compiler_activation_jobs.go | 34 +--- 158 files changed, 214 insertions(+), 5091 deletions(-) diff --git a/.github/workflows/agent-performance-analyzer.lock.yml b/.github/workflows/agent-performance-analyzer.lock.yml index da2e073dbd9..00bd3465177 100644 --- a/.github/workflows/agent-performance-analyzer.lock.yml +++ b/.github/workflows/agent-performance-analyzer.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/agent-persona-explorer.lock.yml b/.github/workflows/agent-persona-explorer.lock.yml index 7c379c7db4b..e5c8c62f0aa 100644 --- a/.github/workflows/agent-persona-explorer.lock.yml +++ b/.github/workflows/agent-persona-explorer.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/ai-moderator.lock.yml b/.github/workflows/ai-moderator.lock.yml index 37b8a0f62ba..58f392676c0 100644 --- a/.github/workflows/ai-moderator.lock.yml +++ b/.github/workflows/ai-moderator.lock.yml @@ -83,38 +83,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/archie.lock.yml b/.github/workflows/archie.lock.yml index 98943d841cc..1232ab9aded 100644 --- a/.github/workflows/archie.lock.yml +++ b/.github/workflows/archie.lock.yml @@ -89,38 +89,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/artifacts-summary.lock.yml b/.github/workflows/artifacts-summary.lock.yml index 60ccd685b7a..a9c873c37f5 100644 --- a/.github/workflows/artifacts-summary.lock.yml +++ b/.github/workflows/artifacts-summary.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/audit-workflows.lock.yml b/.github/workflows/audit-workflows.lock.yml index 6366d4e63e6..c837cb086fe 100644 --- a/.github/workflows/audit-workflows.lock.yml +++ b/.github/workflows/audit-workflows.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/auto-triage-issues.lock.yml b/.github/workflows/auto-triage-issues.lock.yml index 000727bb145..f57e4015d4b 100644 --- a/.github/workflows/auto-triage-issues.lock.yml +++ b/.github/workflows/auto-triage-issues.lock.yml @@ -74,38 +74,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/blog-auditor.lock.yml b/.github/workflows/blog-auditor.lock.yml index ebd3aa2cf66..5ed207d2550 100644 --- a/.github/workflows/blog-auditor.lock.yml +++ b/.github/workflows/blog-auditor.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/bot-detection.lock.yml b/.github/workflows/bot-detection.lock.yml index c10f3626536..a09c0c14fca 100644 --- a/.github/workflows/bot-detection.lock.yml +++ b/.github/workflows/bot-detection.lock.yml @@ -59,38 +59,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/brave.lock.yml b/.github/workflows/brave.lock.yml index b0b8535b278..6156764807a 100644 --- a/.github/workflows/brave.lock.yml +++ b/.github/workflows/brave.lock.yml @@ -76,38 +76,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/breaking-change-checker.lock.yml b/.github/workflows/breaking-change-checker.lock.yml index 731c72c4541..82d9634f0eb 100644 --- a/.github/workflows/breaking-change-checker.lock.yml +++ b/.github/workflows/breaking-change-checker.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/changeset.lock.yml b/.github/workflows/changeset.lock.yml index 43f8355e55a..f07fb973b44 100644 --- a/.github/workflows/changeset.lock.yml +++ b/.github/workflows/changeset.lock.yml @@ -83,38 +83,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/chroma-issue-indexer.lock.yml b/.github/workflows/chroma-issue-indexer.lock.yml index f24b441b004..c7fc6d57a26 100644 --- a/.github/workflows/chroma-issue-indexer.lock.yml +++ b/.github/workflows/chroma-issue-indexer.lock.yml @@ -63,38 +63,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/ci-coach.lock.yml b/.github/workflows/ci-coach.lock.yml index 25a5fd7f867..3e32874de2f 100644 --- a/.github/workflows/ci-coach.lock.yml +++ b/.github/workflows/ci-coach.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/ci-doctor.lock.yml b/.github/workflows/ci-doctor.lock.yml index 1a80b00fde2..c93263999be 100644 --- a/.github/workflows/ci-doctor.lock.yml +++ b/.github/workflows/ci-doctor.lock.yml @@ -78,38 +78,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/claude-code-user-docs-review.lock.yml b/.github/workflows/claude-code-user-docs-review.lock.yml index 560809140ad..7d8207ea447 100644 --- a/.github/workflows/claude-code-user-docs-review.lock.yml +++ b/.github/workflows/claude-code-user-docs-review.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/cli-consistency-checker.lock.yml b/.github/workflows/cli-consistency-checker.lock.yml index 29c7e911f90..7725b551d47 100644 --- a/.github/workflows/cli-consistency-checker.lock.yml +++ b/.github/workflows/cli-consistency-checker.lock.yml @@ -63,38 +63,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/cli-version-checker.lock.yml b/.github/workflows/cli-version-checker.lock.yml index c2442f8c349..8d83b71a6cb 100644 --- a/.github/workflows/cli-version-checker.lock.yml +++ b/.github/workflows/cli-version-checker.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/cloclo.lock.yml b/.github/workflows/cloclo.lock.yml index f036a887b85..51281a50d22 100644 --- a/.github/workflows/cloclo.lock.yml +++ b/.github/workflows/cloclo.lock.yml @@ -112,38 +112,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/code-scanning-fixer.lock.yml b/.github/workflows/code-scanning-fixer.lock.yml index 0cd277e97bc..a685dab0bb8 100644 --- a/.github/workflows/code-scanning-fixer.lock.yml +++ b/.github/workflows/code-scanning-fixer.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/code-simplifier.lock.yml b/.github/workflows/code-simplifier.lock.yml index 4ee67c82f00..02ef42902d0 100644 --- a/.github/workflows/code-simplifier.lock.yml +++ b/.github/workflows/code-simplifier.lock.yml @@ -68,38 +68,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/codex-github-remote-mcp-test.lock.yml b/.github/workflows/codex-github-remote-mcp-test.lock.yml index 341c6099b77..328a44c65b9 100644 --- a/.github/workflows/codex-github-remote-mcp-test.lock.yml +++ b/.github/workflows/codex-github-remote-mcp-test.lock.yml @@ -61,38 +61,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/commit-changes-analyzer.lock.yml b/.github/workflows/commit-changes-analyzer.lock.yml index 6c315629f3b..ba4a364129d 100644 --- a/.github/workflows/commit-changes-analyzer.lock.yml +++ b/.github/workflows/commit-changes-analyzer.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/contribution-check.lock.yml b/.github/workflows/contribution-check.lock.yml index a5677e856b2..384e6821d27 100644 --- a/.github/workflows/contribution-check.lock.yml +++ b/.github/workflows/contribution-check.lock.yml @@ -62,38 +62,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/copilot-agent-analysis.lock.yml b/.github/workflows/copilot-agent-analysis.lock.yml index 2cade7d05d3..ed176dc720c 100644 --- a/.github/workflows/copilot-agent-analysis.lock.yml +++ b/.github/workflows/copilot-agent-analysis.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/copilot-cli-deep-research.lock.yml b/.github/workflows/copilot-cli-deep-research.lock.yml index 9b17e628835..0e0b08cd79c 100644 --- a/.github/workflows/copilot-cli-deep-research.lock.yml +++ b/.github/workflows/copilot-cli-deep-research.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/copilot-pr-merged-report.lock.yml b/.github/workflows/copilot-pr-merged-report.lock.yml index 1dff0fd88d3..9c1f3dc1e9a 100644 --- a/.github/workflows/copilot-pr-merged-report.lock.yml +++ b/.github/workflows/copilot-pr-merged-report.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/copilot-pr-nlp-analysis.lock.yml b/.github/workflows/copilot-pr-nlp-analysis.lock.yml index 3637a610fa4..53a7aebf5e4 100644 --- a/.github/workflows/copilot-pr-nlp-analysis.lock.yml +++ b/.github/workflows/copilot-pr-nlp-analysis.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/copilot-pr-prompt-analysis.lock.yml b/.github/workflows/copilot-pr-prompt-analysis.lock.yml index 660266f2ee8..6dca919b33a 100644 --- a/.github/workflows/copilot-pr-prompt-analysis.lock.yml +++ b/.github/workflows/copilot-pr-prompt-analysis.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/copilot-session-insights.lock.yml b/.github/workflows/copilot-session-insights.lock.yml index 867318343ed..15c2bcb29bc 100644 --- a/.github/workflows/copilot-session-insights.lock.yml +++ b/.github/workflows/copilot-session-insights.lock.yml @@ -70,38 +70,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/craft.lock.yml b/.github/workflows/craft.lock.yml index b1270ecb80f..29d806d201e 100644 --- a/.github/workflows/craft.lock.yml +++ b/.github/workflows/craft.lock.yml @@ -76,38 +76,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-assign-issue-to-user.lock.yml b/.github/workflows/daily-assign-issue-to-user.lock.yml index 7521d9e429f..d2579bb498c 100644 --- a/.github/workflows/daily-assign-issue-to-user.lock.yml +++ b/.github/workflows/daily-assign-issue-to-user.lock.yml @@ -63,38 +63,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-choice-test.lock.yml b/.github/workflows/daily-choice-test.lock.yml index 1d31756c9a4..3c70e695e7c 100644 --- a/.github/workflows/daily-choice-test.lock.yml +++ b/.github/workflows/daily-choice-test.lock.yml @@ -63,38 +63,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-cli-performance.lock.yml b/.github/workflows/daily-cli-performance.lock.yml index ae3aa864eeb..edde169143d 100644 --- a/.github/workflows/daily-cli-performance.lock.yml +++ b/.github/workflows/daily-cli-performance.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-cli-tools-tester.lock.yml b/.github/workflows/daily-cli-tools-tester.lock.yml index 6d7101ecb26..71dc0f11ef0 100644 --- a/.github/workflows/daily-cli-tools-tester.lock.yml +++ b/.github/workflows/daily-cli-tools-tester.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-code-metrics.lock.yml b/.github/workflows/daily-code-metrics.lock.yml index fc1c9f082eb..a981a5f7ce9 100644 --- a/.github/workflows/daily-code-metrics.lock.yml +++ b/.github/workflows/daily-code-metrics.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-compiler-quality.lock.yml b/.github/workflows/daily-compiler-quality.lock.yml index e3cb2b053c7..236ce18a8ef 100644 --- a/.github/workflows/daily-compiler-quality.lock.yml +++ b/.github/workflows/daily-compiler-quality.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-copilot-token-report.lock.yml b/.github/workflows/daily-copilot-token-report.lock.yml index 43af13ec3b5..332252a851c 100644 --- a/.github/workflows/daily-copilot-token-report.lock.yml +++ b/.github/workflows/daily-copilot-token-report.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-doc-updater.lock.yml b/.github/workflows/daily-doc-updater.lock.yml index e92cd8ee8da..ca7d354cc11 100644 --- a/.github/workflows/daily-doc-updater.lock.yml +++ b/.github/workflows/daily-doc-updater.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-fact.lock.yml b/.github/workflows/daily-fact.lock.yml index da5a66cfb86..bafe5aa249a 100644 --- a/.github/workflows/daily-fact.lock.yml +++ b/.github/workflows/daily-fact.lock.yml @@ -57,38 +57,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-file-diet.lock.yml b/.github/workflows/daily-file-diet.lock.yml index 972e82d8dcf..14e3fd4f74f 100644 --- a/.github/workflows/daily-file-diet.lock.yml +++ b/.github/workflows/daily-file-diet.lock.yml @@ -68,38 +68,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-firewall-report.lock.yml b/.github/workflows/daily-firewall-report.lock.yml index 02b4bee123e..8da88c23380 100644 --- a/.github/workflows/daily-firewall-report.lock.yml +++ b/.github/workflows/daily-firewall-report.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-issues-report.lock.yml b/.github/workflows/daily-issues-report.lock.yml index f6735d5c30e..889d2996cbe 100644 --- a/.github/workflows/daily-issues-report.lock.yml +++ b/.github/workflows/daily-issues-report.lock.yml @@ -71,38 +71,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-malicious-code-scan.lock.yml b/.github/workflows/daily-malicious-code-scan.lock.yml index 9ecd1b4fdb3..15ec2b3171c 100644 --- a/.github/workflows/daily-malicious-code-scan.lock.yml +++ b/.github/workflows/daily-malicious-code-scan.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml index c0b75af149f..4990654df2f 100644 --- a/.github/workflows/daily-mcp-concurrency-analysis.lock.yml +++ b/.github/workflows/daily-mcp-concurrency-analysis.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-multi-device-docs-tester.lock.yml b/.github/workflows/daily-multi-device-docs-tester.lock.yml index 40701cff49a..d75fba6742a 100644 --- a/.github/workflows/daily-multi-device-docs-tester.lock.yml +++ b/.github/workflows/daily-multi-device-docs-tester.lock.yml @@ -71,38 +71,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-news.lock.yml b/.github/workflows/daily-news.lock.yml index d8e2a44be6a..66ffd986084 100644 --- a/.github/workflows/daily-news.lock.yml +++ b/.github/workflows/daily-news.lock.yml @@ -68,38 +68,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-observability-report.lock.yml b/.github/workflows/daily-observability-report.lock.yml index 0f566a87172..c36e81bb800 100644 --- a/.github/workflows/daily-observability-report.lock.yml +++ b/.github/workflows/daily-observability-report.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-performance-summary.lock.yml b/.github/workflows/daily-performance-summary.lock.yml index 342e83b9508..358d609dc41 100644 --- a/.github/workflows/daily-performance-summary.lock.yml +++ b/.github/workflows/daily-performance-summary.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-regulatory.lock.yml b/.github/workflows/daily-regulatory.lock.yml index bcbd4be1c32..75ff7d64a1c 100644 --- a/.github/workflows/daily-regulatory.lock.yml +++ b/.github/workflows/daily-regulatory.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-repo-chronicle.lock.yml b/.github/workflows/daily-repo-chronicle.lock.yml index 92f4f5350cd..e5252e0b8d8 100644 --- a/.github/workflows/daily-repo-chronicle.lock.yml +++ b/.github/workflows/daily-repo-chronicle.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-safe-output-optimizer.lock.yml b/.github/workflows/daily-safe-output-optimizer.lock.yml index 232b77d7cfb..36c646e5297 100644 --- a/.github/workflows/daily-safe-output-optimizer.lock.yml +++ b/.github/workflows/daily-safe-output-optimizer.lock.yml @@ -69,38 +69,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-safe-outputs-conformance.lock.yml b/.github/workflows/daily-safe-outputs-conformance.lock.yml index eec37aa4ccd..fce2f8ca3dc 100644 --- a/.github/workflows/daily-safe-outputs-conformance.lock.yml +++ b/.github/workflows/daily-safe-outputs-conformance.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-secrets-analysis.lock.yml b/.github/workflows/daily-secrets-analysis.lock.yml index 0b93e170577..a6296044b0a 100644 --- a/.github/workflows/daily-secrets-analysis.lock.yml +++ b/.github/workflows/daily-secrets-analysis.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-security-red-team.lock.yml b/.github/workflows/daily-security-red-team.lock.yml index 782b99562a8..89757979d3f 100644 --- a/.github/workflows/daily-security-red-team.lock.yml +++ b/.github/workflows/daily-security-red-team.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-semgrep-scan.lock.yml b/.github/workflows/daily-semgrep-scan.lock.yml index 1f0f43476d5..a991e28c785 100644 --- a/.github/workflows/daily-semgrep-scan.lock.yml +++ b/.github/workflows/daily-semgrep-scan.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-syntax-error-quality.lock.yml b/.github/workflows/daily-syntax-error-quality.lock.yml index 53bf01e9997..3c85bf9250d 100644 --- a/.github/workflows/daily-syntax-error-quality.lock.yml +++ b/.github/workflows/daily-syntax-error-quality.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-team-evolution-insights.lock.yml b/.github/workflows/daily-team-evolution-insights.lock.yml index 0667d9f804a..954211acaee 100644 --- a/.github/workflows/daily-team-evolution-insights.lock.yml +++ b/.github/workflows/daily-team-evolution-insights.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-team-status.lock.yml b/.github/workflows/daily-team-status.lock.yml index a6a0e0d687f..c85c988de61 100644 --- a/.github/workflows/daily-team-status.lock.yml +++ b/.github/workflows/daily-team-status.lock.yml @@ -74,38 +74,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-testify-uber-super-expert.lock.yml b/.github/workflows/daily-testify-uber-super-expert.lock.yml index 9b2ca8d0aca..bd87d33ac17 100644 --- a/.github/workflows/daily-testify-uber-super-expert.lock.yml +++ b/.github/workflows/daily-testify-uber-super-expert.lock.yml @@ -69,38 +69,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/daily-workflow-updater.lock.yml b/.github/workflows/daily-workflow-updater.lock.yml index c36cb1588c5..9133555b34c 100644 --- a/.github/workflows/daily-workflow-updater.lock.yml +++ b/.github/workflows/daily-workflow-updater.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/deep-report.lock.yml b/.github/workflows/deep-report.lock.yml index 95b3b888671..ea49fa28951 100644 --- a/.github/workflows/deep-report.lock.yml +++ b/.github/workflows/deep-report.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/delight.lock.yml b/.github/workflows/delight.lock.yml index 54ca3d35fa3..708e6307f75 100644 --- a/.github/workflows/delight.lock.yml +++ b/.github/workflows/delight.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/dependabot-burner.lock.yml b/.github/workflows/dependabot-burner.lock.yml index f2e9215929a..74972585f7d 100644 --- a/.github/workflows/dependabot-burner.lock.yml +++ b/.github/workflows/dependabot-burner.lock.yml @@ -61,38 +61,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/dependabot-go-checker.lock.yml b/.github/workflows/dependabot-go-checker.lock.yml index fa5b9d4f718..55a3b37f119 100644 --- a/.github/workflows/dependabot-go-checker.lock.yml +++ b/.github/workflows/dependabot-go-checker.lock.yml @@ -63,38 +63,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/dev-hawk.lock.yml b/.github/workflows/dev-hawk.lock.yml index 2c69c9cd19e..c9b33a48e9b 100644 --- a/.github/workflows/dev-hawk.lock.yml +++ b/.github/workflows/dev-hawk.lock.yml @@ -74,38 +74,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/dev.lock.yml b/.github/workflows/dev.lock.yml index 25005b6bdfb..5b04a8e6d8a 100644 --- a/.github/workflows/dev.lock.yml +++ b/.github/workflows/dev.lock.yml @@ -63,38 +63,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/developer-docs-consolidator.lock.yml b/.github/workflows/developer-docs-consolidator.lock.yml index 338dac6cf03..8e0377d97aa 100644 --- a/.github/workflows/developer-docs-consolidator.lock.yml +++ b/.github/workflows/developer-docs-consolidator.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/dictation-prompt.lock.yml b/.github/workflows/dictation-prompt.lock.yml index 6e85e4e24dc..23515659906 100644 --- a/.github/workflows/dictation-prompt.lock.yml +++ b/.github/workflows/dictation-prompt.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/discussion-task-miner.lock.yml b/.github/workflows/discussion-task-miner.lock.yml index 8927b0dd131..c4c13830e00 100644 --- a/.github/workflows/discussion-task-miner.lock.yml +++ b/.github/workflows/discussion-task-miner.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/docs-noob-tester.lock.yml b/.github/workflows/docs-noob-tester.lock.yml index 223131fedcd..dd8254c7d21 100644 --- a/.github/workflows/docs-noob-tester.lock.yml +++ b/.github/workflows/docs-noob-tester.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/draft-pr-cleanup.lock.yml b/.github/workflows/draft-pr-cleanup.lock.yml index 90c8b87dff6..3adb80617a5 100644 --- a/.github/workflows/draft-pr-cleanup.lock.yml +++ b/.github/workflows/draft-pr-cleanup.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/duplicate-code-detector.lock.yml b/.github/workflows/duplicate-code-detector.lock.yml index ffb7c01929b..6f7d6b93149 100644 --- a/.github/workflows/duplicate-code-detector.lock.yml +++ b/.github/workflows/duplicate-code-detector.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/example-custom-error-patterns.lock.yml b/.github/workflows/example-custom-error-patterns.lock.yml index 31f95362a64..dc486e8b650 100644 --- a/.github/workflows/example-custom-error-patterns.lock.yml +++ b/.github/workflows/example-custom-error-patterns.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/example-permissions-warning.lock.yml b/.github/workflows/example-permissions-warning.lock.yml index d5b833ae278..f93775e89b5 100644 --- a/.github/workflows/example-permissions-warning.lock.yml +++ b/.github/workflows/example-permissions-warning.lock.yml @@ -61,38 +61,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/example-workflow-analyzer.lock.yml b/.github/workflows/example-workflow-analyzer.lock.yml index 52444f3d5f8..1bab21fd60b 100644 --- a/.github/workflows/example-workflow-analyzer.lock.yml +++ b/.github/workflows/example-workflow-analyzer.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/firewall-escape.lock.yml b/.github/workflows/firewall-escape.lock.yml index 6f3afb9d649..cb8c0b6b8df 100644 --- a/.github/workflows/firewall-escape.lock.yml +++ b/.github/workflows/firewall-escape.lock.yml @@ -77,38 +77,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/firewall.lock.yml b/.github/workflows/firewall.lock.yml index 77855eeb624..6343bd30e5f 100644 --- a/.github/workflows/firewall.lock.yml +++ b/.github/workflows/firewall.lock.yml @@ -61,38 +61,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/functional-pragmatist.lock.yml b/.github/workflows/functional-pragmatist.lock.yml index 080dd8e4e33..cf39ebf22ae 100644 --- a/.github/workflows/functional-pragmatist.lock.yml +++ b/.github/workflows/functional-pragmatist.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/github-mcp-structural-analysis.lock.yml b/.github/workflows/github-mcp-structural-analysis.lock.yml index c28b3fd10c5..02ae34fab74 100644 --- a/.github/workflows/github-mcp-structural-analysis.lock.yml +++ b/.github/workflows/github-mcp-structural-analysis.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/github-mcp-tools-report.lock.yml b/.github/workflows/github-mcp-tools-report.lock.yml index 87d402ccee4..0dd3cd7eb46 100644 --- a/.github/workflows/github-mcp-tools-report.lock.yml +++ b/.github/workflows/github-mcp-tools-report.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/github-remote-mcp-auth-test.lock.yml b/.github/workflows/github-remote-mcp-auth-test.lock.yml index 15d158b59f1..2cb72ed9a3a 100644 --- a/.github/workflows/github-remote-mcp-auth-test.lock.yml +++ b/.github/workflows/github-remote-mcp-auth-test.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/glossary-maintainer.lock.yml b/.github/workflows/glossary-maintainer.lock.yml index b3fb0aa5bfa..979b8b73bca 100644 --- a/.github/workflows/glossary-maintainer.lock.yml +++ b/.github/workflows/glossary-maintainer.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/go-fan.lock.yml b/.github/workflows/go-fan.lock.yml index 981c37cbf41..334d5c8b4ca 100644 --- a/.github/workflows/go-fan.lock.yml +++ b/.github/workflows/go-fan.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/go-logger.lock.yml b/.github/workflows/go-logger.lock.yml index b26cffa3e96..148f7bb58aa 100644 --- a/.github/workflows/go-logger.lock.yml +++ b/.github/workflows/go-logger.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/go-pattern-detector.lock.yml b/.github/workflows/go-pattern-detector.lock.yml index 33a5cfd37da..baddc53bc9d 100644 --- a/.github/workflows/go-pattern-detector.lock.yml +++ b/.github/workflows/go-pattern-detector.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/gpclean.lock.yml b/.github/workflows/gpclean.lock.yml index 09f14c0c3df..63c56d18709 100644 --- a/.github/workflows/gpclean.lock.yml +++ b/.github/workflows/gpclean.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/grumpy-reviewer.lock.yml b/.github/workflows/grumpy-reviewer.lock.yml index 2f1245523c8..f1975a71932 100644 --- a/.github/workflows/grumpy-reviewer.lock.yml +++ b/.github/workflows/grumpy-reviewer.lock.yml @@ -80,38 +80,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/hourly-ci-cleaner.lock.yml b/.github/workflows/hourly-ci-cleaner.lock.yml index 781f07e2001..77c3ab43374 100644 --- a/.github/workflows/hourly-ci-cleaner.lock.yml +++ b/.github/workflows/hourly-ci-cleaner.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/instructions-janitor.lock.yml b/.github/workflows/instructions-janitor.lock.yml index 1b6759244db..c065a153e67 100644 --- a/.github/workflows/instructions-janitor.lock.yml +++ b/.github/workflows/instructions-janitor.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/issue-arborist.lock.yml b/.github/workflows/issue-arborist.lock.yml index 0cf111c4e2c..486af303735 100644 --- a/.github/workflows/issue-arborist.lock.yml +++ b/.github/workflows/issue-arborist.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/issue-classifier.lock.yml b/.github/workflows/issue-classifier.lock.yml index d2db246a4bd..4831f36920f 100644 --- a/.github/workflows/issue-classifier.lock.yml +++ b/.github/workflows/issue-classifier.lock.yml @@ -72,38 +72,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/issue-monster.lock.yml b/.github/workflows/issue-monster.lock.yml index d0cd32c8bb2..93f7cc51e1e 100644 --- a/.github/workflows/issue-monster.lock.yml +++ b/.github/workflows/issue-monster.lock.yml @@ -72,38 +72,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/issue-triage-agent.lock.yml b/.github/workflows/issue-triage-agent.lock.yml index e91363a61bc..5f240e93216 100644 --- a/.github/workflows/issue-triage-agent.lock.yml +++ b/.github/workflows/issue-triage-agent.lock.yml @@ -63,38 +63,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/jsweep.lock.yml b/.github/workflows/jsweep.lock.yml index 7790c778e14..ee4e760f284 100644 --- a/.github/workflows/jsweep.lock.yml +++ b/.github/workflows/jsweep.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/layout-spec-maintainer.lock.yml b/.github/workflows/layout-spec-maintainer.lock.yml index 04c7faa8316..447feafefbd 100644 --- a/.github/workflows/layout-spec-maintainer.lock.yml +++ b/.github/workflows/layout-spec-maintainer.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/lockfile-stats.lock.yml b/.github/workflows/lockfile-stats.lock.yml index 954903d3085..e3bc1a08f72 100644 --- a/.github/workflows/lockfile-stats.lock.yml +++ b/.github/workflows/lockfile-stats.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/mcp-inspector.lock.yml b/.github/workflows/mcp-inspector.lock.yml index f28c38180db..2a18b99862d 100644 --- a/.github/workflows/mcp-inspector.lock.yml +++ b/.github/workflows/mcp-inspector.lock.yml @@ -79,38 +79,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/mergefest.lock.yml b/.github/workflows/mergefest.lock.yml index 16ede26e462..64ddac9b6c3 100644 --- a/.github/workflows/mergefest.lock.yml +++ b/.github/workflows/mergefest.lock.yml @@ -75,38 +75,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/metrics-collector.lock.yml b/.github/workflows/metrics-collector.lock.yml index 854dff515ae..cfce1d32cfe 100644 --- a/.github/workflows/metrics-collector.lock.yml +++ b/.github/workflows/metrics-collector.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/notion-issue-summary.lock.yml b/.github/workflows/notion-issue-summary.lock.yml index 13918073d15..8620dddf4ca 100644 --- a/.github/workflows/notion-issue-summary.lock.yml +++ b/.github/workflows/notion-issue-summary.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/org-health-report.lock.yml b/.github/workflows/org-health-report.lock.yml index 8359a599046..057d1549603 100644 --- a/.github/workflows/org-health-report.lock.yml +++ b/.github/workflows/org-health-report.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/pdf-summary.lock.yml b/.github/workflows/pdf-summary.lock.yml index 0a643a35983..7934cce20f2 100644 --- a/.github/workflows/pdf-summary.lock.yml +++ b/.github/workflows/pdf-summary.lock.yml @@ -95,38 +95,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/plan.lock.yml b/.github/workflows/plan.lock.yml index 47c9ab8c53d..04d621936ec 100644 --- a/.github/workflows/plan.lock.yml +++ b/.github/workflows/plan.lock.yml @@ -80,38 +80,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/poem-bot.lock.yml b/.github/workflows/poem-bot.lock.yml index a2367b556ec..46938759f57 100644 --- a/.github/workflows/poem-bot.lock.yml +++ b/.github/workflows/poem-bot.lock.yml @@ -84,38 +84,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/portfolio-analyst.lock.yml b/.github/workflows/portfolio-analyst.lock.yml index a4ce70548c9..2f24a250556 100644 --- a/.github/workflows/portfolio-analyst.lock.yml +++ b/.github/workflows/portfolio-analyst.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/pr-nitpick-reviewer.lock.yml b/.github/workflows/pr-nitpick-reviewer.lock.yml index dc2f20fded6..a26e9922fb8 100644 --- a/.github/workflows/pr-nitpick-reviewer.lock.yml +++ b/.github/workflows/pr-nitpick-reviewer.lock.yml @@ -105,38 +105,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/pr-triage-agent.lock.yml b/.github/workflows/pr-triage-agent.lock.yml index 51d3732e769..991ca1c72ae 100644 --- a/.github/workflows/pr-triage-agent.lock.yml +++ b/.github/workflows/pr-triage-agent.lock.yml @@ -63,38 +63,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/prompt-clustering-analysis.lock.yml b/.github/workflows/prompt-clustering-analysis.lock.yml index ec7dfb90d83..6b06bddb315 100644 --- a/.github/workflows/prompt-clustering-analysis.lock.yml +++ b/.github/workflows/prompt-clustering-analysis.lock.yml @@ -70,38 +70,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/python-data-charts.lock.yml b/.github/workflows/python-data-charts.lock.yml index 08e883d8f6e..923bf50599c 100644 --- a/.github/workflows/python-data-charts.lock.yml +++ b/.github/workflows/python-data-charts.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/q.lock.yml b/.github/workflows/q.lock.yml index b918635f638..148b7dcda33 100644 --- a/.github/workflows/q.lock.yml +++ b/.github/workflows/q.lock.yml @@ -104,38 +104,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/refiner.lock.yml b/.github/workflows/refiner.lock.yml index ad0160b6d50..2473555442f 100644 --- a/.github/workflows/refiner.lock.yml +++ b/.github/workflows/refiner.lock.yml @@ -79,38 +79,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/release.lock.yml b/.github/workflows/release.lock.yml index b5cc92bc8c8..ba1da89d9f4 100644 --- a/.github/workflows/release.lock.yml +++ b/.github/workflows/release.lock.yml @@ -72,38 +72,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/repo-audit-analyzer.lock.yml b/.github/workflows/repo-audit-analyzer.lock.yml index af201bb3031..455e7879514 100644 --- a/.github/workflows/repo-audit-analyzer.lock.yml +++ b/.github/workflows/repo-audit-analyzer.lock.yml @@ -68,38 +68,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/repo-tree-map.lock.yml b/.github/workflows/repo-tree-map.lock.yml index cb1629e1f35..57de3bc0429 100644 --- a/.github/workflows/repo-tree-map.lock.yml +++ b/.github/workflows/repo-tree-map.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/repository-quality-improver.lock.yml b/.github/workflows/repository-quality-improver.lock.yml index fa0e0d50bb1..6d7ce514cd4 100644 --- a/.github/workflows/repository-quality-improver.lock.yml +++ b/.github/workflows/repository-quality-improver.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/research.lock.yml b/.github/workflows/research.lock.yml index f7b85cfbb39..d71f5117965 100644 --- a/.github/workflows/research.lock.yml +++ b/.github/workflows/research.lock.yml @@ -68,38 +68,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/safe-output-health.lock.yml b/.github/workflows/safe-output-health.lock.yml index 008cb9e850f..7ab86acd5fa 100644 --- a/.github/workflows/safe-output-health.lock.yml +++ b/.github/workflows/safe-output-health.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/schema-consistency-checker.lock.yml b/.github/workflows/schema-consistency-checker.lock.yml index 63b3455968a..3562dba9cfe 100644 --- a/.github/workflows/schema-consistency-checker.lock.yml +++ b/.github/workflows/schema-consistency-checker.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/scout.lock.yml b/.github/workflows/scout.lock.yml index 651c201556c..82178763b56 100644 --- a/.github/workflows/scout.lock.yml +++ b/.github/workflows/scout.lock.yml @@ -120,38 +120,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/security-compliance.lock.yml b/.github/workflows/security-compliance.lock.yml index 835504319fc..0f041b92c83 100644 --- a/.github/workflows/security-compliance.lock.yml +++ b/.github/workflows/security-compliance.lock.yml @@ -76,38 +76,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/security-review.lock.yml b/.github/workflows/security-review.lock.yml index fa7bfac752a..091da9e18a4 100644 --- a/.github/workflows/security-review.lock.yml +++ b/.github/workflows/security-review.lock.yml @@ -80,38 +80,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/semantic-function-refactor.lock.yml b/.github/workflows/semantic-function-refactor.lock.yml index 7742292e734..e9117cb5b05 100644 --- a/.github/workflows/semantic-function-refactor.lock.yml +++ b/.github/workflows/semantic-function-refactor.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/sergo.lock.yml b/.github/workflows/sergo.lock.yml index a2bae54c720..2b3b642ce2e 100644 --- a/.github/workflows/sergo.lock.yml +++ b/.github/workflows/sergo.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/slide-deck-maintainer.lock.yml b/.github/workflows/slide-deck-maintainer.lock.yml index 2480e101506..4bfefa3b3cd 100644 --- a/.github/workflows/slide-deck-maintainer.lock.yml +++ b/.github/workflows/slide-deck-maintainer.lock.yml @@ -71,38 +71,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/smoke-claude.lock.yml b/.github/workflows/smoke-claude.lock.yml index 49589bcd30f..363e3fd5426 100644 --- a/.github/workflows/smoke-claude.lock.yml +++ b/.github/workflows/smoke-claude.lock.yml @@ -86,38 +86,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/smoke-codex.lock.yml b/.github/workflows/smoke-codex.lock.yml index fc10bd90c31..6562d105a90 100644 --- a/.github/workflows/smoke-codex.lock.yml +++ b/.github/workflows/smoke-codex.lock.yml @@ -81,38 +81,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/smoke-copilot-sdk.lock.yml b/.github/workflows/smoke-copilot-sdk.lock.yml index c3223709c04..59a7f3eaa72 100644 --- a/.github/workflows/smoke-copilot-sdk.lock.yml +++ b/.github/workflows/smoke-copilot-sdk.lock.yml @@ -79,38 +79,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/smoke-copilot.lock.yml b/.github/workflows/smoke-copilot.lock.yml index 84d011f9c2d..22c2efc3a0e 100644 --- a/.github/workflows/smoke-copilot.lock.yml +++ b/.github/workflows/smoke-copilot.lock.yml @@ -82,38 +82,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/smoke-opencode.lock.yml b/.github/workflows/smoke-opencode.lock.yml index 275b8977332..d32929f8b23 100644 --- a/.github/workflows/smoke-opencode.lock.yml +++ b/.github/workflows/smoke-opencode.lock.yml @@ -82,38 +82,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/smoke-project.lock.yml b/.github/workflows/smoke-project.lock.yml index 405a4f13cf2..9bf654ac484 100644 --- a/.github/workflows/smoke-project.lock.yml +++ b/.github/workflows/smoke-project.lock.yml @@ -74,38 +74,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/smoke-temporary-id.lock.yml b/.github/workflows/smoke-temporary-id.lock.yml index b21547a28fe..41a4537c9e7 100644 --- a/.github/workflows/smoke-temporary-id.lock.yml +++ b/.github/workflows/smoke-temporary-id.lock.yml @@ -74,38 +74,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/smoke-test-tools.lock.yml b/.github/workflows/smoke-test-tools.lock.yml index a535ed5d3f2..1a87871458b 100644 --- a/.github/workflows/smoke-test-tools.lock.yml +++ b/.github/workflows/smoke-test-tools.lock.yml @@ -73,38 +73,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/stale-repo-identifier.lock.yml b/.github/workflows/stale-repo-identifier.lock.yml index 19f15bcfeed..1bd2483662a 100644 --- a/.github/workflows/stale-repo-identifier.lock.yml +++ b/.github/workflows/stale-repo-identifier.lock.yml @@ -75,38 +75,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/static-analysis-report.lock.yml b/.github/workflows/static-analysis-report.lock.yml index 78b04a0ebfa..2173e1c1ec5 100644 --- a/.github/workflows/static-analysis-report.lock.yml +++ b/.github/workflows/static-analysis-report.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/step-name-alignment.lock.yml b/.github/workflows/step-name-alignment.lock.yml index a799d9cb77e..d738916517f 100644 --- a/.github/workflows/step-name-alignment.lock.yml +++ b/.github/workflows/step-name-alignment.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/sub-issue-closer.lock.yml b/.github/workflows/sub-issue-closer.lock.yml index 51185435fd5..74b5ee052f7 100644 --- a/.github/workflows/sub-issue-closer.lock.yml +++ b/.github/workflows/sub-issue-closer.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/super-linter.lock.yml b/.github/workflows/super-linter.lock.yml index 67ec3831515..6cfeb8a7517 100644 --- a/.github/workflows/super-linter.lock.yml +++ b/.github/workflows/super-linter.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/technical-doc-writer.lock.yml b/.github/workflows/technical-doc-writer.lock.yml index a43946a0748..2576c260c26 100644 --- a/.github/workflows/technical-doc-writer.lock.yml +++ b/.github/workflows/technical-doc-writer.lock.yml @@ -68,38 +68,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/terminal-stylist.lock.yml b/.github/workflows/terminal-stylist.lock.yml index e015249937a..8d8092ec489 100644 --- a/.github/workflows/terminal-stylist.lock.yml +++ b/.github/workflows/terminal-stylist.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/test-create-pr-error-handling.lock.yml b/.github/workflows/test-create-pr-error-handling.lock.yml index 093b599a911..f6a3e5f40f3 100644 --- a/.github/workflows/test-create-pr-error-handling.lock.yml +++ b/.github/workflows/test-create-pr-error-handling.lock.yml @@ -61,38 +61,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/test-dispatcher.lock.yml b/.github/workflows/test-dispatcher.lock.yml index bbead1dfad4..5df40b44dc0 100644 --- a/.github/workflows/test-dispatcher.lock.yml +++ b/.github/workflows/test-dispatcher.lock.yml @@ -60,38 +60,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/test-project-url-default.lock.yml b/.github/workflows/test-project-url-default.lock.yml index 9f055b7df1d..9ffc6b07b27 100644 --- a/.github/workflows/test-project-url-default.lock.yml +++ b/.github/workflows/test-project-url-default.lock.yml @@ -60,38 +60,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/test-workflow.lock.yml b/.github/workflows/test-workflow.lock.yml index 48c0554f6fa..3b0c664857c 100644 --- a/.github/workflows/test-workflow.lock.yml +++ b/.github/workflows/test-workflow.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/tidy.lock.yml b/.github/workflows/tidy.lock.yml index da3b5e7d88c..5b5b3ad0331 100644 --- a/.github/workflows/tidy.lock.yml +++ b/.github/workflows/tidy.lock.yml @@ -88,38 +88,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/typist.lock.yml b/.github/workflows/typist.lock.yml index 5bbe8b78f73..3a2c6aa441b 100644 --- a/.github/workflows/typist.lock.yml +++ b/.github/workflows/typist.lock.yml @@ -64,38 +64,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/ubuntu-image-analyzer.lock.yml b/.github/workflows/ubuntu-image-analyzer.lock.yml index e92506bfab6..1e2fcec9a56 100644 --- a/.github/workflows/ubuntu-image-analyzer.lock.yml +++ b/.github/workflows/ubuntu-image-analyzer.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/unbloat-docs.lock.yml b/.github/workflows/unbloat-docs.lock.yml index dafed2d4123..33a2767c0ac 100644 --- a/.github/workflows/unbloat-docs.lock.yml +++ b/.github/workflows/unbloat-docs.lock.yml @@ -81,38 +81,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/video-analyzer.lock.yml b/.github/workflows/video-analyzer.lock.yml index 8ffba642f7d..e4a2da39b7d 100644 --- a/.github/workflows/video-analyzer.lock.yml +++ b/.github/workflows/video-analyzer.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/weekly-issue-summary.lock.yml b/.github/workflows/weekly-issue-summary.lock.yml index a5481a44e73..855fb62d2fa 100644 --- a/.github/workflows/weekly-issue-summary.lock.yml +++ b/.github/workflows/weekly-issue-summary.lock.yml @@ -66,38 +66,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml index aeb02da431f..dcb8785cd6a 100644 --- a/.github/workflows/weekly-safe-outputs-spec-review.lock.yml +++ b/.github/workflows/weekly-safe-outputs-spec-review.lock.yml @@ -60,38 +60,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/workflow-generator.lock.yml b/.github/workflows/workflow-generator.lock.yml index 5ba8e38e80a..57f03b2c440 100644 --- a/.github/workflows/workflow-generator.lock.yml +++ b/.github/workflows/workflow-generator.lock.yml @@ -73,38 +73,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/workflow-health-manager.lock.yml b/.github/workflows/workflow-health-manager.lock.yml index f9429dac8cd..303e2de6ba7 100644 --- a/.github/workflows/workflow-health-manager.lock.yml +++ b/.github/workflows/workflow-health-manager.lock.yml @@ -67,38 +67,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/workflow-normalizer.lock.yml b/.github/workflows/workflow-normalizer.lock.yml index 3a00d5858d7..0b494bc5698 100644 --- a/.github/workflows/workflow-normalizer.lock.yml +++ b/.github/workflows/workflow-normalizer.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/.github/workflows/workflow-skill-extractor.lock.yml b/.github/workflows/workflow-skill-extractor.lock.yml index af1dc2d4213..68db80d7ac8 100644 --- a/.github/workflows/workflow-skill-extractor.lock.yml +++ b/.github/workflows/workflow-skill-extractor.lock.yml @@ -65,38 +65,6 @@ jobs: destination: /opt/gh-aw/actions - name: Validate context variables uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 - env: - GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }} - GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }} - GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }} - GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }} - GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }} - GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }} - GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }} - GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }} - GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }} - GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }} - GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }} - GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }} - GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }} - GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }} - GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }} - GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }} - GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }} - GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }} - GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }} - GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }} - GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }} - GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }} - GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }} - GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }} - GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }} - GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }} - GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }} - GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }} - GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }} - GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }} with: script: | const { setupGlobals } = require('/opt/gh-aw/actions/setup_globals.cjs'); diff --git a/actions/setup/js/validate_context_variables.cjs b/actions/setup/js/validate_context_variables.cjs index 70686d38adb..cdf3ad2e7af 100644 --- a/actions/setup/js/validate_context_variables.cjs +++ b/actions/setup/js/validate_context_variables.cjs @@ -45,76 +45,96 @@ const { getErrorMessage } = require("./error_helpers.cjs"); /** - * List of numeric context variable names - * These correspond to the environment variables passed from the Go compiler + * List of numeric context variable paths to validate + * Each entry contains the path within the context object and a display name */ -const NUMERIC_CONTEXT_VARS = [ - "ISSUE_NUMBER", - "PULL_REQUEST_NUMBER", - "DISCUSSION_NUMBER", - "MILESTONE_NUMBER", - "CHECK_RUN_NUMBER", - "CHECK_SUITE_NUMBER", - "WORKFLOW_RUN_NUMBER", - "CHECK_RUN_ID", - "CHECK_SUITE_ID", - "COMMENT_ID", - "DEPLOYMENT_ID", - "DEPLOYMENT_STATUS_ID", - "HEAD_COMMIT_ID", - "INSTALLATION_ID", - "WORKFLOW_JOB_RUN_ID", - "LABEL_ID", - "MILESTONE_ID", - "ORGANIZATION_ID", - "PAGE_ID", - "PROJECT_ID", - "PROJECT_CARD_ID", - "PROJECT_COLUMN_ID", - "RELEASE_ID", - "REPOSITORY_ID", - "REVIEW_ID", - "REVIEW_COMMENT_ID", - "SENDER_ID", - "WORKFLOW_RUN_ID", - "WORKFLOW_JOB_ID", - "RUN_ID", - "RUN_NUMBER", +const NUMERIC_CONTEXT_PATHS = [ + { path: ["payload", "issue", "number"], name: "github.event.issue.number" }, + { path: ["payload", "pull_request", "number"], name: "github.event.pull_request.number" }, + { path: ["payload", "discussion", "number"], name: "github.event.discussion.number" }, + { path: ["payload", "milestone", "number"], name: "github.event.milestone.number" }, + { path: ["payload", "check_run", "number"], name: "github.event.check_run.number" }, + { path: ["payload", "check_suite", "number"], name: "github.event.check_suite.number" }, + { path: ["payload", "workflow_run", "number"], name: "github.event.workflow_run.number" }, + { path: ["payload", "check_run", "id"], name: "github.event.check_run.id" }, + { path: ["payload", "check_suite", "id"], name: "github.event.check_suite.id" }, + { path: ["payload", "comment", "id"], name: "github.event.comment.id" }, + { path: ["payload", "deployment", "id"], name: "github.event.deployment.id" }, + { path: ["payload", "deployment_status", "id"], name: "github.event.deployment_status.id" }, + { path: ["payload", "head_commit", "id"], name: "github.event.head_commit.id" }, + { path: ["payload", "installation", "id"], name: "github.event.installation.id" }, + { path: ["payload", "workflow_job", "run_id"], name: "github.event.workflow_job.run_id" }, + { path: ["payload", "label", "id"], name: "github.event.label.id" }, + { path: ["payload", "milestone", "id"], name: "github.event.milestone.id" }, + { path: ["payload", "organization", "id"], name: "github.event.organization.id" }, + { path: ["payload", "page", "id"], name: "github.event.page.id" }, + { path: ["payload", "project", "id"], name: "github.event.project.id" }, + { path: ["payload", "project_card", "id"], name: "github.event.project_card.id" }, + { path: ["payload", "project_column", "id"], name: "github.event.project_column.id" }, + { path: ["payload", "release", "id"], name: "github.event.release.id" }, + { path: ["payload", "repository", "id"], name: "github.event.repository.id" }, + { path: ["payload", "review", "id"], name: "github.event.review.id" }, + { path: ["payload", "review_comment", "id"], name: "github.event.review_comment.id" }, + { path: ["payload", "sender", "id"], name: "github.event.sender.id" }, + { path: ["payload", "workflow_run", "id"], name: "github.event.workflow_run.id" }, + { path: ["payload", "workflow_job", "id"], name: "github.event.workflow_job.id" }, + { path: ["run_id"], name: "github.run_id" }, + { path: ["run_number"], name: "github.run_number" }, ]; +/** + * Gets a value from a nested object using a path array + * @param {any} obj - The object to traverse + * @param {string[]} path - Array of keys to traverse + * @returns {any} The value at the path, or undefined if not found + */ +function getNestedValue(obj, path) { + let current = obj; + for (const key of path) { + if (current == null || typeof current !== "object") { + return undefined; + } + current = current[key]; + } + return current; +} + /** * Validates that a value is either empty or a valid integer - * @param {string | undefined} value - The value to validate + * @param {any} value - The value to validate * @param {string} varName - The variable name for error reporting * @returns {{valid: boolean, message: string}} Validation result */ function validateNumericValue(value, varName) { - // Empty or undefined is valid (field not present) - if (!value || value.trim() === "") { + // Empty, null, or undefined is valid (field not present) + if (value == null || value === "") { return { valid: true, message: `${varName} is empty (valid)` }; } + // Convert to string for validation + const valueStr = String(value); + // Check if the value is a valid integer (positive or negative) // Allow only digits, optionally preceded by a minus sign - const isValidInteger = /^-?\d+$/.test(value.trim()); + const isValidInteger = /^-?\d+$/.test(valueStr.trim()); if (!isValidInteger) { return { valid: false, - message: `${varName} contains non-numeric characters: "${value}"`, + message: `${varName} contains non-numeric characters: "${valueStr}"`, }; } // Additional check: ensure it's within JavaScript's safe integer range - const numValue = parseInt(value.trim(), 10); + const numValue = parseInt(valueStr.trim(), 10); if (!Number.isSafeInteger(numValue)) { return { valid: false, - message: `${varName} is outside safe integer range: ${value}`, + message: `${varName} is outside safe integer range: ${valueStr}`, }; } - return { valid: true, message: `${varName} is valid: ${value}` }; + return { valid: true, message: `${varName} is valid: ${valueStr}` }; } /** @@ -125,25 +145,23 @@ async function main() { core.info("Starting context variable validation..."); const failures = []; - const warnings = []; let checkedCount = 0; - // Validate each numeric context variable - for (const varName of NUMERIC_CONTEXT_VARS) { - const envVarName = `GH_AW_CONTEXT_${varName}`; - const value = process.env[envVarName]; + // Validate each numeric context variable by reading directly from context + for (const { path, name } of NUMERIC_CONTEXT_PATHS) { + const value = getNestedValue(context, path); - // Only validate if the variable is set + // Only validate if the value exists if (value !== undefined) { checkedCount++; - const result = validateNumericValue(value, varName); + const result = validateNumericValue(value, name); if (result.valid) { core.info(`✓ ${result.message}`); } else { core.error(`✗ ${result.message}`); failures.push({ - varName, + name, value, message: result.message, }); @@ -158,7 +176,7 @@ async function main() { const errorMessage = `Context variable validation failed!\n\n` + `Found ${failures.length} malicious or invalid numeric field(s):\n\n` + - failures.map(f => ` - ${f.varName}: "${f.value}"\n ${f.message}`).join("\n\n") + + failures.map(f => ` - ${f.name}: "${f.value}"\n ${f.message}`).join("\n\n") + "\n\n" + "Numeric context variables (like github.event.issue.number) must be either empty or valid integers.\n" + "This validation prevents injection attacks where special text or code is hidden in numeric fields.\n\n" + @@ -180,5 +198,6 @@ async function main() { module.exports = { main, validateNumericValue, - NUMERIC_CONTEXT_VARS, + getNestedValue, + NUMERIC_CONTEXT_PATHS, }; diff --git a/actions/setup/js/validate_context_variables.test.cjs b/actions/setup/js/validate_context_variables.test.cjs index cd0c2b2af96..8dd48c8e7ba 100644 --- a/actions/setup/js/validate_context_variables.test.cjs +++ b/actions/setup/js/validate_context_variables.test.cjs @@ -1,15 +1,13 @@ // @ts-check -import { describe, it, expect, beforeEach, afterEach, vi } from "vitest"; +import { describe, it, expect, beforeEach, vi } from "vitest"; describe("validateNumericValue", () => { let validateNumericValue; - let NUMERIC_CONTEXT_VARS; beforeEach(async () => { const module = await import("./validate_context_variables.cjs"); validateNumericValue = module.validateNumericValue; - NUMERIC_CONTEXT_VARS = module.NUMERIC_CONTEXT_VARS; }); it("should accept empty values", () => { @@ -24,13 +22,20 @@ describe("validateNumericValue", () => { expect(result.message).toContain("empty"); }); - it("should accept whitespace-only values", () => { - const result = validateNumericValue(" ", "TEST_VAR"); + it("should accept null values", () => { + const result = validateNumericValue(null, "TEST_VAR"); expect(result.valid).toBe(true); expect(result.message).toContain("empty"); }); - it("should accept valid positive integers", () => { + it("should accept valid positive integers as numbers", () => { + const result = validateNumericValue(12345, "ISSUE_NUMBER"); + expect(result.valid).toBe(true); + expect(result.message).toContain("valid"); + expect(result.message).toContain("12345"); + }); + + it("should accept valid positive integers as strings", () => { const result = validateNumericValue("12345", "ISSUE_NUMBER"); expect(result.valid).toBe(true); expect(result.message).toContain("valid"); @@ -150,56 +155,147 @@ describe("validateNumericValue", () => { }); }); -describe("NUMERIC_CONTEXT_VARS", () => { - let NUMERIC_CONTEXT_VARS; +describe("getNestedValue", () => { + let getNestedValue; beforeEach(async () => { const module = await import("./validate_context_variables.cjs"); - NUMERIC_CONTEXT_VARS = module.NUMERIC_CONTEXT_VARS; + getNestedValue = module.getNestedValue; + }); + + it("should get nested values from objects", () => { + const obj = { + payload: { + issue: { + number: 123, + }, + }, + }; + + const result = getNestedValue(obj, ["payload", "issue", "number"]); + expect(result).toBe(123); + }); + + it("should return undefined for missing paths", () => { + const obj = { + payload: {}, + }; + + const result = getNestedValue(obj, ["payload", "issue", "number"]); + expect(result).toBeUndefined(); + }); + + it("should return undefined for null/undefined intermediate values", () => { + const obj = { + payload: null, + }; + + const result = getNestedValue(obj, ["payload", "issue", "number"]); + expect(result).toBeUndefined(); + }); + + it("should handle empty path", () => { + const obj = { value: 42 }; + const result = getNestedValue(obj, []); + expect(result).toEqual(obj); + }); +}); + +describe("NUMERIC_CONTEXT_PATHS", () => { + let NUMERIC_CONTEXT_PATHS; + + beforeEach(async () => { + const module = await import("./validate_context_variables.cjs"); + NUMERIC_CONTEXT_PATHS = module.NUMERIC_CONTEXT_PATHS; }); it("should include all expected numeric variables", () => { - const expectedVars = [ - "ISSUE_NUMBER", - "PULL_REQUEST_NUMBER", - "DISCUSSION_NUMBER", - "MILESTONE_NUMBER", - "CHECK_RUN_NUMBER", - "CHECK_SUITE_NUMBER", - "WORKFLOW_RUN_NUMBER", - "CHECK_RUN_ID", - "CHECK_SUITE_ID", - "COMMENT_ID", - "DEPLOYMENT_ID", - "DEPLOYMENT_STATUS_ID", - "HEAD_COMMIT_ID", - "INSTALLATION_ID", - "WORKFLOW_JOB_RUN_ID", - "LABEL_ID", - "MILESTONE_ID", - "ORGANIZATION_ID", - "PAGE_ID", - "PROJECT_ID", - "PROJECT_CARD_ID", - "PROJECT_COLUMN_ID", - "RELEASE_ID", - "REPOSITORY_ID", - "REVIEW_ID", - "REVIEW_COMMENT_ID", - "SENDER_ID", - "WORKFLOW_RUN_ID", - "WORKFLOW_JOB_ID", - "RUN_ID", - "RUN_NUMBER", + const expectedPaths = [ + { path: ["payload", "issue", "number"], name: "github.event.issue.number" }, + { path: ["payload", "pull_request", "number"], name: "github.event.pull_request.number" }, + { path: ["payload", "discussion", "number"], name: "github.event.discussion.number" }, + { path: ["run_id"], name: "github.run_id" }, + { path: ["run_number"], name: "github.run_number" }, ]; - expectedVars.forEach(varName => { - expect(NUMERIC_CONTEXT_VARS).toContain(varName); + expectedPaths.forEach(expected => { + const found = NUMERIC_CONTEXT_PATHS.find(p => p.name === expected.name); + expect(found).toBeDefined(); + expect(found.path).toEqual(expected.path); }); }); - it("should not include duplicate entries", () => { - const uniqueVars = [...new Set(NUMERIC_CONTEXT_VARS)]; - expect(uniqueVars.length).toBe(NUMERIC_CONTEXT_VARS.length); + it("should have 31 context paths", () => { + expect(NUMERIC_CONTEXT_PATHS.length).toBe(31); + }); + + it("should not include duplicate names", () => { + const names = NUMERIC_CONTEXT_PATHS.map(p => p.name); + const uniqueNames = [...new Set(names)]; + expect(uniqueNames.length).toBe(NUMERIC_CONTEXT_PATHS.length); + }); +}); + +describe("main", () => { + let main; + let mockCore; + let mockContext; + + beforeEach(async () => { + vi.resetModules(); + + mockCore = { + info: vi.fn(), + error: vi.fn(), + setFailed: vi.fn(), + }; + + mockContext = { + payload: { + issue: { + number: 123, + }, + pull_request: { + number: 456, + }, + }, + run_id: 789, + run_number: 10, + }; + + global.core = mockCore; + global.context = mockContext; + + const module = await import("./validate_context_variables.cjs"); + main = module.main; + }); + + afterEach(() => { + delete global.core; + delete global.context; + }); + + it("should validate all numeric context variables successfully", async () => { + await main(); + + expect(mockCore.setFailed).not.toHaveBeenCalled(); + expect(mockCore.info).toHaveBeenCalledWith(expect.stringContaining("✅ All context variables validated successfully")); + }); + + it("should fail when a numeric field contains non-numeric data", async () => { + mockContext.payload.issue.number = "123; DROP TABLE users"; + + await expect(main()).rejects.toThrow(); + expect(mockCore.setFailed).toHaveBeenCalled(); + expect(mockCore.error).toHaveBeenCalledWith(expect.stringContaining("non-numeric")); + }); + + it("should pass when numeric fields are valid integers", async () => { + mockContext.payload.issue.number = 42; + mockContext.run_id = 12345; + + await main(); + + expect(mockCore.setFailed).not.toHaveBeenCalled(); }); }); diff --git a/pkg/workflow/compiler_activation_jobs.go b/pkg/workflow/compiler_activation_jobs.go index d86eb23ba2b..dbf41b025a8 100644 --- a/pkg/workflow/compiler_activation_jobs.go +++ b/pkg/workflow/compiler_activation_jobs.go @@ -461,41 +461,9 @@ func (c *Compiler) buildActivationJob(data *WorkflowData, preActivationJobCreate // Add context variable validation step to ensure numeric fields contain only integers // This prevents malicious payloads from hiding special text or code in numeric fields + // The validation reads directly from the GitHub context object (no env vars needed) steps = append(steps, " - name: Validate context variables\n") steps = append(steps, fmt.Sprintf(" uses: %s\n", GetActionPin("actions/github-script"))) - steps = append(steps, " env:\n") - // Pass all numeric context variables as environment variables for validation - steps = append(steps, " GH_AW_CONTEXT_ISSUE_NUMBER: ${{ github.event.issue.number }}\n") - steps = append(steps, " GH_AW_CONTEXT_PULL_REQUEST_NUMBER: ${{ github.event.pull_request.number }}\n") - steps = append(steps, " GH_AW_CONTEXT_DISCUSSION_NUMBER: ${{ github.event.discussion.number }}\n") - steps = append(steps, " GH_AW_CONTEXT_MILESTONE_NUMBER: ${{ github.event.milestone.number }}\n") - steps = append(steps, " GH_AW_CONTEXT_CHECK_RUN_NUMBER: ${{ github.event.check_run.number }}\n") - steps = append(steps, " GH_AW_CONTEXT_CHECK_SUITE_NUMBER: ${{ github.event.check_suite.number }}\n") - steps = append(steps, " GH_AW_CONTEXT_WORKFLOW_RUN_NUMBER: ${{ github.event.workflow_run.number }}\n") - steps = append(steps, " GH_AW_CONTEXT_CHECK_RUN_ID: ${{ github.event.check_run.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_CHECK_SUITE_ID: ${{ github.event.check_suite.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_COMMENT_ID: ${{ github.event.comment.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_DEPLOYMENT_ID: ${{ github.event.deployment.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_DEPLOYMENT_STATUS_ID: ${{ github.event.deployment_status.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_HEAD_COMMIT_ID: ${{ github.event.head_commit.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_INSTALLATION_ID: ${{ github.event.installation.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_WORKFLOW_JOB_RUN_ID: ${{ github.event.workflow_job.run_id }}\n") - steps = append(steps, " GH_AW_CONTEXT_LABEL_ID: ${{ github.event.label.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_MILESTONE_ID: ${{ github.event.milestone.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_ORGANIZATION_ID: ${{ github.event.organization.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_PAGE_ID: ${{ github.event.page.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_PROJECT_ID: ${{ github.event.project.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_PROJECT_CARD_ID: ${{ github.event.project_card.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_PROJECT_COLUMN_ID: ${{ github.event.project_column.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_RELEASE_ID: ${{ github.event.release.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_REPOSITORY_ID: ${{ github.event.repository.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_REVIEW_ID: ${{ github.event.review.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_REVIEW_COMMENT_ID: ${{ github.event.review_comment.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_SENDER_ID: ${{ github.event.sender.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_WORKFLOW_JOB_ID: ${{ github.event.workflow_job.id }}\n") - steps = append(steps, " GH_AW_CONTEXT_RUN_ID: ${{ github.run_id }}\n") - steps = append(steps, " GH_AW_CONTEXT_RUN_NUMBER: ${{ github.run_number }}\n") steps = append(steps, " with:\n") steps = append(steps, " script: |\n") steps = append(steps, generateGitHubScriptWithRequire("validate_context_variables.cjs")) From 3a9855dda6d47b4ffe57f421def08a65be7c818a Mon Sep 17 00:00:00 2001 From: Codex Date: Wed, 18 Feb 2026 05:26:28 +0000 Subject: [PATCH 5/5] Add changeset [skip-ci] --- .changeset/patch-validate-context-numbers.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/patch-validate-context-numbers.md diff --git a/.changeset/patch-validate-context-numbers.md b/.changeset/patch-validate-context-numbers.md new file mode 100644 index 00000000000..a6a61568a1c --- /dev/null +++ b/.changeset/patch-validate-context-numbers.md @@ -0,0 +1,5 @@ +--- +"gh-aw": patch +--- + +Ensure activation validates numeric context variables so workflows fail fast on malicious payloads.