Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a16bb72
feat: add wake-up command to manage on-demand workspaces and integrat…
OliverTrautvetter Jan 21, 2026
38522d1
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 21, 2026
3b9e8a2
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 21, 2026
2eaf8ce
fix: logging and lint error
OliverTrautvetter Jan 21, 2026
2122bb7
Merge branch 'wake_up_workspaces' of https://github.com/codesphere-cl…
OliverTrautvetter Jan 21, 2026
34e7c70
fix: tests
OliverTrautvetter Jan 21, 2026
35a0e8f
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 21, 2026
acc7015
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 21, 2026
e704b92
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 21, 2026
18bee67
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 21, 2026
7f96b04
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 21, 2026
165d31b
fix: Improve error handling in WaitForWorkspaceRunning function
OliverTrautvetter Jan 22, 2026
c963cc1
Merge branch 'main' into wake_up_workspaces
OliverTrautvetter Jan 22, 2026
647ec6c
fix: list workspace example
OliverTrautvetter Jan 22, 2026
99ea553
feat: add curl command
OliverTrautvetter Jan 22, 2026
b06abda
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 22, 2026
51b37b5
fix: enhance URL construction by stripping workspace-port prefix from…
OliverTrautvetter Jan 26, 2026
5e41b59
feat: enhance workspace management by adding team retrieval and servi…
OliverTrautvetter Jan 28, 2026
8300eb0
Merge branch 'main' into wake_up_workspaces
OliverTrautvetter Jan 28, 2026
5dc44be
fix: wake up and curl
OliverTrautvetter Jan 28, 2026
9f9e691
Merge branch 'wake_up_workspaces' of https://github.com/codesphere-cl…
OliverTrautvetter Jan 28, 2026
98a1b93
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 28, 2026
e874153
ref: cleanup
OliverTrautvetter Jan 28, 2026
d03ba68
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 28, 2026
12bdf29
fix: integration test
OliverTrautvetter Jan 28, 2026
401eb63
Update api/workspace.go
OliverTrautvetter Jan 28, 2026
ca57a7c
ref: curl tests
OliverTrautvetter Jan 28, 2026
bbbb9c4
Merge branch 'wake_up_workspaces' of https://github.com/codesphere-cl…
OliverTrautvetter Jan 28, 2026
d499ebf
chore(docs): Auto-update docs and licenses
OliverTrautvetter Jan 28, 2026
db439c3
Merge branch 'main' into wake_up_workspaces
OliverTrautvetter Jan 28, 2026
e917713
Merge branch 'main' into wake_up_workspaces
OliverTrautvetter Jan 29, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
echo "Cleaning up any orphaned test workspaces..."
# List all workspaces and delete any with test name prefixes
./cs list workspaces -t $CS_TEAM_ID | grep -E "cli-(test|git-test|pipeline-test|log-test|sync-test|open-test|setenv-test|edge-test)-" | awk '{print $2}' | while read ws_id; do
./cs list workspaces -t $CS_TEAM_ID | grep -E "cli-(test|git-test|pipeline-test|log-test|sync-test|open-test|setenv-test|edge-test|wakeup-test|curl-test)-" | awk '{print $2}' | while read ws_id; do
if [ ! -z "$ws_id" ]; then
echo "Deleting orphaned workspace: $ws_id"
./cs delete workspace -w $ws_id --yes || true
Expand Down
1 change: 0 additions & 1 deletion .mockery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ packages:
github.com/codesphere-cloud/cs-go/api/openapi_client:
config:
all: true
include-auto-generated: true
interfaces:
github.com/codesphere-cloud/cs-go/api:
config:
Expand Down
Loading