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
1 change: 1 addition & 0 deletions .github/workflows/reusable-claude-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ jobs:
path: .workflows-actions
sparse-checkout: |
.github/actions/agent-run-base
sparse-checkout-cone-mode: false
token: ${{ steps.bootstrap_app_token.outputs.token || github.token }}

- name: Agent run base setup
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/reusable-codex-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ jobs:
path: .workflows-actions
sparse-checkout: |
.github/actions/agent-run-base
sparse-checkout-cone-mode: false
token: ${{ steps.bootstrap_app_token.outputs.token || github.token }}

- name: Agent run base setup
Expand Down
1 change: 1 addition & 0 deletions tests/workflows/test_reusable_run_shared_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ def test_extracted_setup_steps_not_duplicated_in_runners(workflow_rel: str) -> N
checkout_with = run_base_checkout_steps[0]["with"]
assert checkout_with["path"] == RUN_BASE_CHECKOUT_PATH
assert ".github/actions/agent-run-base" in checkout_with["sparse-checkout"]
assert checkout_with["sparse-checkout-cone-mode"] is False
assert ".workflows-actions" in src
assert (
checkout_with["token"] == "${{ steps.bootstrap_app_token.outputs.token || github.token }}"
Expand Down
Loading