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
67 changes: 66 additions & 1 deletion .github/github-repo-workflow.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
{
"defaultBranch": "main",
"projectType": "python-package",
"docs": {
"overview": "README.md",
"release": "RELEASE.md",
"testing": "tests/README.md",
"packageManifest": "pyproject.toml",
"lockfile": "uv.lock"
},
"qualityGate": {
"setup": {
"default": "uv sync --locked"
},
"test": {
"default": "uv run pytest"
},
"build": {
"package": "uv build",
"checkDistribution": "uv run twine check dist/*"
},
"release": {
"verify": "uv sync --locked && uv run pytest && rm -rf dist && uv build && uv run twine check dist/*"
},
"docsRequiredWhen": [
"behavior changes",
"api changes",
"config changes",
"packaging metadata changes",
"release workflow changes",
"dependency changes",
"public import path changes",
"upstream compatibility changes"
]
},
"importantWorkflows": ["CI", "Publish"],
"qaLabels": [],
"deployLabels": [],
Expand All @@ -13,6 +46,38 @@
"deleteMergedLocalBranches": true,
"removeMergedCleanWorktrees": true
},
"githubSignals": {
"postMerge": {
"waitForActions": true,
"checkSecurityAndQuality": true
},
"capabilities": {
"codeScanning": "available",
"secretScanning": "not_enabled",
"dependabotAlerts": "available",
"securityAdvisories": "available"
},
"refreshWhen": [
"repo visibility changes",
"GitHub plan changes",
"security settings change",
"token permissions change"
]
},
"relatedRepos": [],
"validatedThrough": []
"validatedThrough": ["CI", "Publish"],
"metadataFreshness": {
"updateWhen": [
"docs routing changes",
"validation gates change",
"primary commands change",
"important workflows change",
"health endpoint changes",
"repo relationship changes",
"cleanup policy changes",
"release workflow changes",
"dependency or packaging metadata changes",
"public import path changes"
]
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
.DS_Store
.code/
.venv/
.pytest_cache/
__pycache__/
*.py[cod]
dist/
build/
*.egg-info/
*.override.*
4 changes: 3 additions & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ This repository is maintained as a careful, community-oriented Python client for

- The default branch is `main`.
- Keep repo workflow defaults in `.github/github-repo-workflow.json` so future
GitHub workflow sessions can discover important workflows and cleanup policy.
GitHub workflow sessions can discover non-secret repo workflow facts,
validation commands, GitHub signal availability, docs routing, important
workflows, and cleanup policy.
- Do not commit directly to `main`.
- Use a focused branch and pull request for every meaningful change.
- Keep pull requests small enough to review.
Expand Down
Loading