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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: Test

on:
push:
branches: ["main", "develop"]
branches: ["main"]
pull_request:
workflow_dispatch:

Expand Down
5 changes: 2 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,9 @@ the test stage, never test files themselves). `HEALTHCHECK` hits `/healthz` with

### Branching, versioning & release pipeline

`develop` is the integration branch (feature branches → PR → `develop`); `main` only moves via a
PR from `develop`.
Feature branches merge directly into `main` via PR — there is no `develop`/integration branch.

- `.github/workflows/ci.yml` — the `test` job, on every push (`main`/`develop`) and every PR.
- `.github/workflows/ci.yml` — the `test` job, on every push to `main` and every PR.
- `.github/workflows/release-please.yml` — runs on every push to `main`. Its `release-please` job
runs [Release Please](https://github.com/googleapis/release-please) (config:
`release-please-config.json` + `.release-please-manifest.json`), which never pushes to `main`
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ and the web routes (via Flask's test client) — all without needing a real IMAP

### Branching and releases

- `develop` is the integration branch — feature branches and day-to-day work target `develop` via
PR. Pushes here (and PRs) only run the test suite (`.github/workflows/ci.yml`); nothing gets
built or released.
- `main` only ever moves forward via a PR from `develop`. Every push to `main` runs
- Feature branches merge directly into `main` via PR — there is no `develop`/integration branch.
PRs only run the test suite (`.github/workflows/ci.yml`); nothing gets built or released until
the PR is merged.
- Every push to `main` runs
[Release Please](https://github.com/googleapis/release-please)
(`.github/workflows/release-please.yml`), which inspects the
[Conventional Commits](https://www.conventionalcommits.org/) merged in since the last release and
Expand Down
2 changes: 1 addition & 1 deletion waypoint/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

log = logging.getLogger("waypoint.state")

MAX_HISTORY = 20
MAX_HISTORY = 25
STATE_FILENAME = "state.json"


Expand Down
Loading