v1.0.0) through every stage on the hosted LaneSync SaaS. Use it after completing the Quickstart.
Setup
Create a milestone in GitHub:- Title:
v1.0.0 - Issues: 2–3 issues linked to the milestone (e.g. feature work and a bug fix)
sdlc.yaml and CI workflows exist.
Stage walkthrough
1
PLANNING → DEVELOPMENT
Gate: All milestone issues must have assignees.
- Open each issue in GitHub
- Assign a team member
- Refresh the LaneSync dashboard — stage advances to DEVELOPMENT
2
DEVELOPMENT → TESTING
Gate: All issues closed via merged PRs; required CI checks pass on
main; release branch exists (release-branch mode).- Open PRs that reference and close milestone issues (
Fixes #123) - Ensure CI passes — check names must match
sdlc.yamldevelopment.required_checks - Merge PRs to
main - Cut release branch:
git checkout -b release/v1.0.0 && git push -u origin release/v1.0.0
3
TESTING → EVIDENCING
Gate: Required checks pass on the release branch (or trunk).
- CI runs on
release/v1.0.0automatically - Wait for all checks in
testing.required_checksto succeed - Evidence upload step runs on release branch pushes (bootstrapped workflow)
4
EVIDENCING → DEPLOYMENT
Gate: Required artifacts uploaded; evidence PR approved.
- Verify test artifacts appear in stage details
- Open the evidence PR (created by CI or manually)
- Request review from
engineering-leads(or configured team) - Approve from lanesync.dev dashboard or GitHub
5
DEPLOYMENT → DEPLOYED
Gate: Manual production promotion after deploy gate passes.
- Confirm deploy gate:
can_deploy: truefor versionv1.0.0 - Trigger production deploy (your existing deploy workflow or manual process)
- LaneSync records deployment and marks milestone DEPLOYED
Monitor progress
The dashboard auto-syncs every 60 seconds. Webhook events trigger faster updates via server-sent events.
Demo shortcut (development only)
Self-hosted and local environments expose a demo setup endpoint. Not available on hosted SaaS:Next steps
- Configure sdlc.yaml for your team’s checks and reviewers
- CI evidence upload to customize pipeline integration
- Project roll-ups for multi-repo releases