Compare commits

...

2 Commits

Author SHA1 Message Date
root
c9305b2b01 ci: add push trigger for feature branches 2026-03-29 08:21:35 +00:00
root
3c79007a82 docs: add __all__ export to errors module 2026-03-29 08:17:27 +00:00
2 changed files with 12 additions and 3 deletions

View File

@ -1,11 +1,10 @@
name: PR Checks
env:
GITEA_TOKEN: ${{ secrets.CI_TOKEN }}
on:
pull_request:
branches: [main]
push:
branches: [main, 'improve-*', 'ci-*', 'feature-*']
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

View File

@ -15,6 +15,16 @@
from typing import Any, Optional
__all__ = [
"KworkError",
"KworkAuthError",
"KworkApiError",
"KworkNotFoundError",
"KworkRateLimitError",
"KworkValidationError",
"KworkNetworkError",
]
class KworkError(Exception):
"""