Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/daily-model-inventory.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .github/workflows/daily-model-inventory.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,15 +265,15 @@ jobs:
permissions:
contents: read
steps:
- name: Install Copilot SDK with bundled Copilot CLI
- name: Install GitHub Copilot SDK with bundled GitHub Copilot CLI
shell: bash
run: |
set -euo pipefail
SDK_DIR="$RUNNER_TEMP/copilot-sdk"
mkdir -p "$SDK_DIR"
npm install --prefix "$SDK_DIR" --no-save @github/copilot-sdk@1.0.11

- name: Fetch Copilot SDK model billing information
- name: Fetch GitHub Copilot SDK model billing information
shell: bash
env:
COPILOT_GITHUB_TOKEN: ${{ secrets.COPILOT_GITHUB_TOKEN }}
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
shell: bash
run: cat /tmp/gh-aw/agent/model-inventory/copilot-sdk/models.json 2>/dev/null || echo "(no models.json)"

- name: Upload Copilot SDK models artifact
- name: Upload GitHub Copilot SDK models artifact
if: always()
uses: actions/upload-artifact@v7.0.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-claude.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/workflow/compiler_safe_outputs_steps.go
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ func buildCustomScriptFilesStep(scripts map[string]*SafeScriptConfig) ([]string,

scriptNames := sliceutil.SortedKeys(scripts)
var steps []string
steps = append(steps, " - name: Configure Safe Outputs Custom Scripts\n")
steps = append(steps, " - name: Configure Safe Output Scripts\n")
steps = append(steps, " run: |\n")

for _, scriptName := range scriptNames {
Expand Down
2 changes: 1 addition & 1 deletion pkg/workflow/safe_scripts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ func TestBuildCustomScriptFilesStep(t *testing.T) {

fullYAML := strings.Join(steps, "")

assert.Contains(t, fullYAML, "Configure Safe Outputs Custom Scripts", "Should have configure step name")
assert.Contains(t, fullYAML, "Configure Safe Output Scripts", "Should have configure step name")
assert.Contains(t, fullYAML, "safe_output_script_my_handler.cjs", "Should reference the output filename")
// Verify heredoc delimiter follows the randomized GH_AW_SAFE_OUTPUT_SCRIPT_MY_HANDLER_<hex>_EOF format
delimRE := regexp.MustCompile(`GH_AW_SAFE_OUTPUT_SCRIPT_MY_HANDLER_[0-9a-f]{16}_EOF`)
Expand Down
Loading