This repository is a smoke-test workspace for the vig-os/devcontainer project.
Its purpose is to verify that the devcontainer template and the shipped CI workflow run successfully on real GitHub-hosted runners, not only in local or synthetic test environments.
The main vig-os/devcontainer repository publishes template files under
assets/workspace/, including a CI workflow
(assets/workspace/.github/workflows/ci.yml).
This repository provides a real target where that template can be bootstrapped and executed end-to-end so regressions are caught early, for example:
- broken GitHub Action pins
- runner environment changes
- dependency/tooling incompatibilities (for example
uvchanges)
This repository is intentionally minimal. It is used to:
- bootstrap a fresh workspace from the current devcontainer template
- run the shipped CI workflow on pull requests
- validate that expected jobs pass in GitHub Actions
- host CI wiring experiments such as
repository_dispatchlisteners
- Source of truth for template:
vig-os/devcontainer - Execution/verification target: this repository
Template or workflow changes should be made in
vig-os/devcontainer, then validated
here through a normal PR run.
For release validation, this repository receives repository_dispatch events
from vig-os/devcontainer and runs an automated deploy-and-test cycle:
- validate the dispatch payload and extract the tag
- deploy that tag with the online installer
- create branch
chore/deploy-<tag>, commit (always), and open a PR todev - CI workflow (
ci.yml) triggers on the PR - enable auto-merge once checks pass
This flow applies to both RC tags and final tags.
There is no CHANGELOG in this repository.
Deployment history is tracked through:
- deploy PRs labeled
deploy - merge history on
dev - GitHub Actions runs attached to each deploy PR
If this repository is lost or needs to be rebuilt, recreate it from the
vig-os/devcontainer image/template:
-
Create a new empty repository (for example
vig-os/devcontainer-smoke-test). -
Clone it locally and run the installer with smoke-test assets enabled:
curl -sSf https://vig-os.github.io/devcontainer/install.sh | sh -s -- --smoke-test .
-
Commit the generated files and push to
main. -
Open a PR and confirm the shipped CI workflow passes:
.github/workflows/ci.yml
-
Verify
.github/workflows/repository-dispatch.ymlexists and listens forrepository_dispatchevents.