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
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

<!-- vale Canonical.007-Headings-sentence-case = NO -->

## [#206 Add resolute image support]
* Add resolute image support.

## [#198 Update integration tests](https://github.com/canonical/github-runner-image-builder-operator/pull/198) (2026-02-17)
* Update integration tests that were intentionally not done in #185.

Expand Down
2 changes: 2 additions & 0 deletions src/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,13 @@ class BaseImage(str, Enum):
FOCAL: The focal ubuntu LTS image.
JAMMY: The jammy ubuntu LTS image.
NOBLE: The noble ubuntu LTS image.
RESOLUTE: The resolute ubuntu LTS image.
"""

FOCAL = "focal"
JAMMY = "jammy"
NOBLE = "noble"
RESOLUTE = "resolute"

def __str__(self) -> str:
"""Interpolate to string value.
Expand Down
Loading