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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/cross_repository.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ body:
options:
- durable-workflow/.github@main
- durable-workflow/ai@main
- durable-workflow/workflow@v2
- durable-workflow/waterline@v2
- durable-workflow/workflow@main
- durable-workflow/waterline@main
- durable-workflow/server@main
- durable-workflow/cli@main
- durable-workflow/sdk-php@main
Expand Down
5 changes: 2 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,8 @@ not post lease heartbeats, raw local logs, or vague status text.

- Never move or reuse a published tag. Release new versions according to
semantic versioning.
- Workflow and Waterline develop on `v2`; `master` is only for explicitly
approved 1.x maintenance until their tracked branch migrations make `main`
the stable 2.x branch and `1.x` the maintenance branch.
- Workflow and Waterline develop on `main`; `1.x` is only for explicitly
approved maintenance of the legacy 1.x line.
- Server, CLI, AI, PHP SDK, Python SDK, and Rust SDK develop on `main`.
- Each package repository owns ordinary semantic-version releases and
publication through a small repository-local workflow. Sample App, Cloud,
Expand Down
4 changes: 2 additions & 2 deletions qualification/policy.json
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
]
},
"waterline": {
"branch": "v2",
"branch": "main",
"repository": "waterline",
"workflows": [
{
Expand All @@ -263,7 +263,7 @@
]
},
"workflow": {
"branch": "v2",
"branch": "main",
"repository": "workflow",
"workflows": [
{
Expand Down
5 changes: 1 addition & 4 deletions qualification/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,7 @@
"additionalProperties": false,
"properties": {
"branch": {
"enum": [
"main",
"v2"
]
"const": "main"
},
"repository": {
"minLength": 1,
Expand Down
4 changes: 2 additions & 2 deletions scripts/qualification_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"sdk-python": ("sdk-python", "main"),
"sdk-rust": ("sdk-rust", "main"),
"server": ("server", "main"),
"waterline": ("waterline", "v2"),
"workflow": ("workflow", "v2"),
"waterline": ("waterline", "main"),
"workflow": ("workflow", "main"),
}
EXPECTED_PUBLIC_AUDIT_TARGETS = set(EXPECTED_TARGETS) - {"cloud"}
GITHUB_API_MAX_ATTEMPTS = 5
Expand Down