Skip to content

OSAC-3780: Add provider-admin instance type routing, nav, and list page - #129

Merged
openshift-merge-bot[bot] merged 8 commits into
osac-project:mainfrom
batzionb:feature/OSAC-3780-admin-instance-types-nav-list
Aug 10, 2026
Merged

OSAC-3780: Add provider-admin instance type routing, nav, and list page#129
openshift-merge-bot[bot] merged 8 commits into
osac-project:mainfrom
batzionb:feature/OSAC-3780-admin-instance-types-nav-list

Conversation

@batzionb

@batzionb batzionb commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

OSAC-3780: Add provider-admin instance type routing, nav, and list page

Jira: OSAC-3780
Story type: [UI]

Summary

Adds a provider-admin surface for browsing instance types: a new Infrastructure admin nav section with an Instance Types entry, list and create routes, a dedicated private-API list hook, and a list page rendering Name, Lifecycle State, CPU cores, Memory, Description, and Created columns. As part of this change, the existing admin Storage entry was relocated under the same Infrastructure section so both resources share one grouping.

Changes

  • Shell/Nav: Add Infrastructure admin nav section with Instance Types (and relocated Storage) entries; register /admin/infrastructure/instance-types and /admin/infrastructure/instance-types/create routes, scoped to provider-admin users only.
  • API: Add useAdminInstanceTypes (private v1/private/instance_types hook), isolated from the tenant-facing useInstanceTypes query key.
  • UI: AdminInstanceTypeListPage (loading/empty/error states via ListPageBody), AdminInstanceTypeTable (extracted table with truncation and a richer empty state), AdminInstanceTypeCreatePage (breadcrumb + coming-soon shell, no form yet), and a new shared ResourceLifecycleLabel primitive (green/orange/grey) used by InstanceTypeLifecycleLabel to render ACTIVE/DEPRECATED/OBSOLETE, falling back to the raw state value for any unrecognized state.

Testing

  • Unit tests: Added/updated coverage for shell nav visibility, route registration (list + create), the private hook and its query-key isolation, list page states (loading/empty/populated/error), table truncation and the Created column, and lifecycle label color mapping including the unknown-state fallback.
  • Integration tests: N/A
  • Coverage: Full suite passes (507 tests); qualitatively sufficient for all new public behaviors per the validation report.

Acceptance Criteria

  • AC-1: Admin navigation includes Infrastructure and Instance Types for provider-admin users
  • AC-2: List and create routes use one consistent provider-admin hosting approach
  • AC-3: /admin/infrastructure/instance-types renders the provider-admin list page
  • AC-4: /admin/infrastructure/instance-types/create renders the create-page shell
  • AC-5: List page loads private instance types and shows the documented columns
  • AC-6: Page distinguishes loading, empty, and fetch-failure states
  • AC-7: Lifecycle state values render with the documented visual treatment
  • AC-8: Private list query uses a dedicated admin hook and query key
  • AC-9: Non-provider personas do not gain access to the new navigation entry
  • AC-10: Tenant-facing routes and navigation remain unchanged

Screenshots

Empty state
Screenshot From 2026-08-09 16-34-40

Instance types with different lifecycles
Screenshot From 2026-08-09 15-52-39

Error state
Screenshot From 2026-08-09 16-15-13

Summary by CodeRabbit

  • New Features

    • Added an Infrastructure section to administration navigation.
    • Added instance type management pages for viewing provider-defined instance types and starting creation.
    • Displayed instance type details, lifecycle status, CPU, memory, descriptions, and creation dates.
    • Added localized labels for instance types and lifecycle states.
  • Updates

    • Moved storage management under the Infrastructure section.
    • Added clearer lifecycle indicators for active, deprecated, and obsolete resources.

Wire the provider-admin instance type pages into the admin shell, add the private instance type hook and lifecycle labels, and rebalance the list table for the reviewed browser layout.

Assisted-by: Cursor <cursoragent@cursor.com>
Signed-off-by: batzionb <brotman@redhat.com>
Align the Infrastructure nav "Instance types" label casing with the
list page and create-page shell so they share one i18n key instead of
two near-duplicate entries.

Assisted-by: Claude Code <noreply@anthropic.com>
Signed-off-by: batzionb <brotman@redhat.com>
Wire a "Create instance type" action into the list page so the
create-page shell (AC-4) is reachable from the UI, matching the
pattern used by TenantListPage.

Assisted-by: Claude Code <noreply@anthropic.com>
Signed-off-by: batzionb <brotman@redhat.com>
Extract the instance type table markup into AdminInstanceTypeTable so
the list page stays focused on data wiring, add a richer empty state
with an icon and guidance text, and fall back to the raw lifecycle
state (or an em dash) instead of a generic 'Unspecified' label.

Assisted-by: Claude Code <noreply@anthropic.com>
Signed-off-by: batzionb <brotman@redhat.com>
Add a dedicated ResourceLifecycleLabel primitive instead of duplicating
PatternFly Label rendering in InstanceTypeLifecycleLabel, default-export
the component to match its siblings, show the raw state text for any
lifecycle value outside the three designed states, add coming-soon
messaging to the create-page shell, align the Lifecycle state column
header casing, and drop an unrelated .gitignore change.

Assisted-by: Claude Code <noreply@anthropic.com>
Signed-off-by: batzionb <brotman@redhat.com>
@openshift-ci-robot

openshift-ci-robot commented Aug 9, 2026

Copy link
Copy Markdown

@batzionb: This pull request references OSAC-3780 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "5.0.0" version, but no target version was set.

Details

In response to this:

OSAC-3780: Add provider-admin instance type routing, nav, and list page

Jira: OSAC-3780
Story type: [UI]

Summary

Adds a provider-admin surface for browsing instance types: a new Infrastructure admin nav section with an Instance Types entry, list and create routes, a dedicated private-API list hook, and a list page rendering Name, Lifecycle State, CPU cores, Memory, Description, and Created columns. As part of this change, the existing admin Storage entry was relocated under the same Infrastructure section so both resources share one grouping.

Changes

  • Shell/Nav: Add Infrastructure admin nav section with Instance Types (and relocated Storage) entries; register /admin/infrastructure/instance-types and /admin/infrastructure/instance-types/create routes, scoped to provider-admin users only.
  • API: Add useAdminInstanceTypes (private v1/private/instance_types hook), isolated from the tenant-facing useInstanceTypes query key.
  • UI: AdminInstanceTypeListPage (loading/empty/error states via ListPageBody), AdminInstanceTypeTable (extracted table with truncation and a richer empty state), AdminInstanceTypeCreatePage (breadcrumb + coming-soon shell, no form yet), and a new shared ResourceLifecycleLabel primitive (green/orange/grey) used by InstanceTypeLifecycleLabel to render ACTIVE/DEPRECATED/OBSOLETE, falling back to the raw state value for any unrecognized state.

Testing

  • Unit tests: Added/updated coverage for shell nav visibility, route registration (list + create), the private hook and its query-key isolation, list page states (loading/empty/populated/error), table truncation and the Created column, and lifecycle label color mapping including the unknown-state fallback.
  • Integration tests: N/A
  • Coverage: Full suite passes (507 tests); qualitatively sufficient for all new public behaviors per the validation report.

Acceptance Criteria

  • AC-1: Admin navigation includes Infrastructure and Instance Types for provider-admin users
  • AC-2: List and create routes use one consistent provider-admin hosting approach
  • AC-3: /admin/infrastructure/instance-types renders the provider-admin list page
  • AC-4: /admin/infrastructure/instance-types/create renders the create-page shell
  • AC-5: List page loads private instance types and shows the documented columns
  • AC-6: Page distinguishes loading, empty, and fetch-failure states
  • AC-7: Lifecycle state values render with the documented visual treatment
  • AC-8: Private list query uses a dedicated admin hook and query key
  • AC-9: Non-provider personas do not gain access to the new navigation entry
  • AC-10: Tenant-facing routes and navigation remain unchanged

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@openshift-ci openshift-ci Bot added the approved label Aug 9, 2026
@coderabbitai

coderabbitai Bot commented Aug 9, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@batzionb, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 42 minutes

You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository.

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Repository: osac-project/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: e6d01ce6-1db6-40c8-8fc7-a8fb45773f77

📥 Commits

Reviewing files that changed from the base of the PR and between 2bfb4cd and c1a49dc.

📒 Files selected for processing (5)
  • libs/ui-components/src/components/InstanceType/AdminInstanceTypeTable.tsx
  • libs/ui-components/src/components/InstanceType/InstanceTypeLifecycleLabel.test.tsx
  • libs/ui-components/src/components/InstanceType/InstanceTypeLifecycleLabel.tsx
  • libs/ui-components/src/components/Primitives/TruncatedText.test.tsx
  • libs/ui-components/src/components/Primitives/TruncatedText.tsx

Walkthrough

The PR adds private instance-type API access, admin list and create pages, lifecycle labels, translated UI text, and Infrastructure navigation. It also moves storage routes under /admin/infrastructure/storage.

Changes

Instance Type Administration

Layer / File(s) Summary
Private instance-type API and test transport
libs/ui-components/src/api/..., libs/ui-components/src/test-utils/createMockConnectTransport.ts
Adds the private API route, useAdminInstanceTypes, mock transport fixtures, and API tests.
Instance-type administration pages and lifecycle display
libs/ui-components/src/components/InstanceType/*, libs/ui-components/src/components/Resource/*, libs/i18n/locales/en/translation.json
Adds the instance-type table, list page, create placeholder, lifecycle labels, translations, and state coverage.
Infrastructure navigation and route wiring
apps/app-frontend/src/shell/*, libs/ui-components/src/pages/admin/StorageManagementPage.*
Adds instance-type routes, groups infrastructure navigation, relocates storage paths, and updates route tests.

Estimated code review effort: 3 (Moderate) | ~25 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Admin
  participant AppShell
  participant InstanceTypeRoutes
  participant AdminInstanceTypeListPage
  participant useAdminInstanceTypes
  Admin->>AppShell: open Infrastructure instance types
  AppShell->>InstanceTypeRoutes: match instance-types route
  InstanceTypeRoutes->>AdminInstanceTypeListPage: render list page
  AdminInstanceTypeListPage->>useAdminInstanceTypes: load instance types
  useAdminInstanceTypes-->>AdminInstanceTypeListPage: return items and query state
  AdminInstanceTypeListPage-->>Admin: render table or empty state
Loading

Possibly related PRs

Suggested reviewers: omer-vishlitzky, elayaharoni, eranco74

🚥 Pre-merge checks | ✅ 11
✅ Passed checks (11 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely summarizes the main changes: provider-admin instance type routing, navigation, and list page.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
No-Hardcoded-Secrets ✅ Passed The complete PR diff adds no API keys, tokens, passwords, private keys, embedded-credential URLs, or secret-shaped blobs; the only password fixture predates this PR.
No-Weak-Crypto ✅ Passed The full PR diff contains no MD5, SHA1, DES, RC4, Blowfish, ECB, crypto API, custom crypto, or secret/token comparison usage; structural scans found no crypto imports or calls.
No-Injection-Vectors ✅ Passed The complete PR diff and changed-file scan found no SQL concatenation, shell execution, eval/exec, unsafe YAML/pickle loading, os.system, or dangerouslySetInnerHTML sinks.
Container-Privileges ✅ Passed The PR changes only frontend/UI files and adds no privilege settings; the existing production Containerfile stage runs as USER 1001, while USER root is limited to build stages.
No-Sensitive-Data-In-Logs ✅ Passed All 22 files listed in the PR are present, and direct plus AST searches found no console, logger, telemetry, serialization, or diagnostic logging calls.
Ai-Attribution ✅ Passed All six OSAC-3780 commits name Claude Code or Cursor and include valid Assisted-by trailers; no AI-related Co-Authored-By trailer is present.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@batzionb
batzionb marked this pull request as ready for review August 9, 2026 14:01

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
libs/ui-components/src/components/Resource/ResourceLifecycleLabel.tsx (1)

7-20: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Use a switch for the lifecycle color mapping.

Replace LIFECYCLE_COLOR[lifecycle] with a switch function. This keeps every lifecycle case in one readable control flow.

Based on learnings: prefer a switch statement when translating a discriminant to props or a component.

Proposed refactor
-const LIFECYCLE_COLOR: Record<LifecycleKind, LifecycleLabelColor> = {
-  active: 'green',
-  deprecated: 'orange',
-  obsolete: 'grey',
-  unspecified: 'grey',
+const lifecycleColor = (lifecycle: LifecycleKind): LifecycleLabelColor => {
+  switch (lifecycle) {
+    case 'active':
+      return 'green';
+    case 'deprecated':
+      return 'orange';
+    case 'obsolete':
+    case 'unspecified':
+      return 'grey';
+  }
 };
@@
-  return <Label color={LIFECYCLE_COLOR[lifecycle]}>{text}</Label>;
+  return <Label color={lifecycleColor(lifecycle)}>{text}</Label>;
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@libs/ui-components/src/components/Resource/ResourceLifecycleLabel.tsx` around
lines 7 - 20, Replace the LIFECYCLE_COLOR lookup used by ResourceLifecycleLabel
with a switch-based helper that maps each LifecycleKind case to its
corresponding LifecycleLabelColor. Update the component to use this helper while
preserving the existing colors for active, deprecated, obsolete, and unspecified
lifecycles.

Source: Learnings

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@libs/ui-components/src/components/Resource/ResourceLifecycleLabel.tsx`:
- Around line 7-20: Replace the LIFECYCLE_COLOR lookup used by
ResourceLifecycleLabel with a switch-based helper that maps each LifecycleKind
case to its corresponding LifecycleLabelColor. Update the component to use this
helper while preserving the existing colors for active, deprecated, obsolete,
and unspecified lifecycles.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository: osac-project/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: daa847c7-e4db-4002-a3b0-5dabc01bd1dd

📥 Commits

Reviewing files that changed from the base of the PR and between 4d7ae6c and 6ae157a.

📒 Files selected for processing (22)
  • apps/app-frontend/src/shell/AppShell.test.tsx
  • apps/app-frontend/src/shell/AppShell.tsx
  • apps/app-frontend/src/shell/InstanceTypeRoutes.test.tsx
  • apps/app-frontend/src/shell/InstanceTypeRoutes.tsx
  • apps/app-frontend/src/shell/StorageRoutes.test.tsx
  • apps/app-frontend/src/shell/shellNav.test.ts
  • apps/app-frontend/src/shell/shellNav.ts
  • libs/i18n/locales/en/translation.json
  • libs/ui-components/src/api/types.ts
  • libs/ui-components/src/api/v1/private/instance-type.test.ts
  • libs/ui-components/src/api/v1/private/instance-type.ts
  • libs/ui-components/src/components/InstanceType/AdminInstanceTypeCreatePage.tsx
  • libs/ui-components/src/components/InstanceType/AdminInstanceTypeListPage.test.tsx
  • libs/ui-components/src/components/InstanceType/AdminInstanceTypeListPage.tsx
  • libs/ui-components/src/components/InstanceType/AdminInstanceTypeTable.tsx
  • libs/ui-components/src/components/InstanceType/InstanceTypeLifecycleLabel.test.tsx
  • libs/ui-components/src/components/InstanceType/InstanceTypeLifecycleLabel.tsx
  • libs/ui-components/src/components/Resource/ResourceLifecycleLabel.test.tsx
  • libs/ui-components/src/components/Resource/ResourceLifecycleLabel.tsx
  • libs/ui-components/src/pages/admin/StorageManagementPage.test.tsx
  • libs/ui-components/src/pages/admin/StorageManagementPage.tsx
  • libs/ui-components/src/test-utils/createMockConnectTransport.ts

@@ -0,0 +1,11 @@
import { Route, Routes } from 'react-router-dom';

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we have this file in ui-components/src/components/InstanceType ?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

InstanceTypeRoutes.tsx mirrors the existing TenantRoutes.tsx exactly — a thin wrapper composing page components, living alongside StorageRoutes.tsx and TenantRoutes.tsx in apps/app-frontend/src/shell/. All routing files live there because they depend on react-router-dom, an app-level dependency not otherwise used inside the framework-agnostic ui-components package. Moving it would break with the established convention and pull a routing dependency into a shared package.
Proposed response: "This follows the same pattern as TenantRoutes.tsx/StorageRoutes.tsx — all our routing wrappers live in apps/app-frontend/src/shell since they depend on react-router-dom, which ui-components doesn't otherwise use. Keeping it here for consistency.

@rawagner rawagner Aug 10, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is no consistency now. Some routes are defined in app, others in ui-components (for example <ClusterRoutes />).

I think it is better to place these route definitions into ui-components. The components there expect a specific route structure (as they use navigate with specific strings).

Comment on lines +68 to +74
<Truncate
content={(instanceType.metadata?.name || instanceType.id)
.replace(/\s+/g, ' ')
.trim()}
maxCharsDisplayed={INSTANCE_TYPE_NAME_PREVIEW_LENGTH}
omissionContent="..."
/>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would be nice to make this a shared component

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done — extracted a generic TruncatedText primitive under libs/ui-components/src/components/Primitives/ and switched both the Name and Description columns to use it. See c1a49dc.

Comment on lines +16 to +30
const props = (): ResourceLifecycleLabelProps => {
switch (state) {
case InstanceTypeState.ACTIVE:
return { lifecycle: 'active', text: t('Active') };
case InstanceTypeState.DEPRECATED:
return { lifecycle: 'deprecated', text: t('Deprecated') };
case InstanceTypeState.OBSOLETE:
return { lifecycle: 'obsolete', text: t('Obsolete') };
case InstanceTypeState.UNSPECIFIED:
case undefined:
return { lifecycle: 'unspecified', text: '—' };
default:
return { lifecycle: 'unspecified', text: String(state) };
}
};

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

consider changing this to a Record like https://github.com/osac-project/osac-ui/blob/main/libs/ui-components/src/components/IdentityProvider/IdentityProviderStatusLabel.tsx#L15-L34

which ensures a TS build check - anytime a new state is added in backend, the TS ensures this state is defined in our state map.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good call — switched to a Record<InstanceTypeState, ResourceLifecycleLabelProps>, matching IdentityProviderStatusLabel. Also updated the unknown-state fallback: rather than surfacing the raw backend value (e.g. 99), it now renders the same unspecified/em-dash treatment as a missing state, so we never show a state text that doesn't correspond to a real UI-designed lifecycle. Test updated accordingly in InstanceTypeLifecycleLabel.test.tsx. See 2bfb4cd.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But seems like coderabbit wants the opposite?
#132 (comment)

@rawagner rawagner Aug 10, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would say we want the combination. We want to have the Record<*State, ResourceLifecycleLabelProps>to ensure our code is up-to-date with the generated types but also have a fallback in case our generated types are not up-to-date with backend. That fallback is currently missing in my code.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WDYT the fallback should be?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you think having Unspecified as the fallback is good enough?

…ecycle mapping

Switch InstanceTypeLifecycleLabel to a Record<InstanceTypeState, ...>
map, following the IdentityProviderStatusLabel pattern, so an
unrecognized backend state falls back to the unspecified treatment
instead of surfacing the raw backend value in the UI.

Assisted-by: Claude Code <noreply@anthropic.com>
Signed-off-by: batzionb <brotman@redhat.com>
… text

Use the shared 'Unspecified' translation for the lifecycle label's
fallback text instead of an em dash, matching IdentityProviderStatusLabel.

Assisted-by: Claude Code <noreply@anthropic.com>
Signed-off-by: batzionb <brotman@redhat.com>
…mitive

Extract the whitespace-normalize-then-truncate pattern used by the Name
and Description columns in AdminInstanceTypeTable into a shared
TruncatedText primitive, so other tables can reuse it.

Assisted-by: Claude Code <noreply@anthropic.com>
Signed-off-by: batzionb <brotman@redhat.com>
@openshift-ci

openshift-ci Bot commented Aug 10, 2026

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: batzionb, ElayAharoni, rawagner

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:
  • OWNERS [ElayAharoni,batzionb,rawagner]

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-bot
openshift-merge-bot Bot merged commit 407c96f into osac-project:main Aug 10, 2026
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants