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
10 changes: 9 additions & 1 deletion .github/configs/labeler.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,12 @@ pipe:

doc:
- changed-files:
- any-glob-to-any-file: README.md
- any-glob-to-any-file: README.md

br-ccs:
- changed-files:
- any-glob-to-any-file: charts/br-ccs/**

br-slc:
- changed-files:
- any-glob-to-any-file: charts/br-slc/**
16 changes: 13 additions & 3 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,30 @@
- [ ] Pipeline
- [ ] Documentation
- [ ] Fetcher
- [ ] BR STA
- [ ] BR CCS
- [ ] BR SLC
- [ ] Common

## Checklist
Please check each item after it's completed.

- [ ] I have tested these changes locally.
- [ ] I have tested these changes locally (or cut an **Alpha Release** from my branch — see below).
- [ ] I have updated the documentation accordingly.
- [ ] I have added necessary comments to the code, especially in complex areas.
- [ ] I have ensured that my changes adhere to the project's coding standards.
- [ ] I have checked for any potential security issues.
- [ ] I have ensured that all tests pass.
- [ ] I have updated the version appropriately (if applicable).
- [ ] This PR modifies **only one chart** (or is a single shared `pipe`/`doc` change).
- [ ] I did **not** hand-edit `Chart.yaml` `version`, `CHANGELOG.md`, or the README version matrix (CI owns these).
- [ ] I have confirmed this code is ready for review.

## Additional Notes
[//]: # (Add any additional notes, context, or explanation that could be helpful for reviewers.)
## Obs: Please, always remember to target your PR to develop branch instead of main.

## Contribution rules (trunk-based)

- 🎯 **Target `main`.** The `develop` branch is retired — do **not** target it.
- 📦 **One chart per PR**, on a `feat/<chart>` branch. A change that touches N charts = N PRs. Shared meta (`.github/**`, root `README.md`) is its own `pipe`/`doc` PR.
- 🧪 **Test before merge with an Alpha Release.** Actions → **Helm Alpha Release** → *Run workflow* against **your branch** → set `chart`. Publishes a disposable `ghcr.io/lerianstudio/alpha/<chart>` (TTL ~3 days). Works even for a chart that only exists on your branch.
- 🏷️ **Version, CHANGELOG and README matrix are CI-owned.** semantic-release bumps them on merge based on your commit type (`feat`→minor, `fix`→patch, breaking→major). Never hand-bump.
1 change: 1 addition & 0 deletions .github/workflows/gptchangelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
with:
runner_type: "blacksmith-4vcpu-ubuntu-2404"
filter_paths: |-
charts/br-sta
charts/fetcher
charts/lerian-notification
charts/midaz
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ jobs:
doc
product-console
fetcher
lender
tracer
br-sta
br-ccs
br-slc
new
charts
common
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,19 @@ For implementation and configuration details, see the [README](https://charts.le
| `3.1.0` | 3.0.2 | 3.0.2 |
-----------------

### Lender

For more details, check out the [official documentation](https://docs.lerian.studio/en/lender).

For implementation and configuration details, see the [README](https://charts.lerian.studio/charts/lender).

#### Application Version Mapping

| Chart Version | Lender Version |
| :---: | :---: |
| `1.0.0-beta.1` | 1.0.0-beta.48 |
-----------------

### Tracer

For more details, check out the [official documentation](https://docs.lerian.studio/en/tracer).
Expand Down
Loading