From 906a42b24a0c98b79cceba4e4083376fa7436747 Mon Sep 17 00:00:00 2001 From: jsonbailey Date: Thu, 18 Jun 2026 12:14:51 -0500 Subject: [PATCH] chore: Rename verify-hello workflow to server-sdk and scope to its slice Renames .github/workflows/verify-hello.yml to server-sdk.yml to match the per-slice CI naming (server-sdk-ai, openfeature-server-provider, client-sdk) and adds a paths filter so it only runs when server-sdk/ (or its workflow) changes. Behavior is otherwise unchanged (builds and runs the getting-started Hello app via verify-hello-app). --- .../workflows/{verify-hello.yml => server-sdk.yml} | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) rename .github/workflows/{verify-hello.yml => server-sdk.yml} (86%) diff --git a/.github/workflows/verify-hello.yml b/.github/workflows/server-sdk.yml similarity index 86% rename from .github/workflows/verify-hello.yml rename to .github/workflows/server-sdk.yml index 013f0e9..cc4426c 100644 --- a/.github/workflows/verify-hello.yml +++ b/.github/workflows/server-sdk.yml @@ -1,16 +1,18 @@ -name: Verify hello app +name: server-sdk on: schedule: # * is a special character in YAML so you have to quote this string - - cron: '0 9 * * *' + - cron: '0 9 * * *' push: branches: [ main, 'feat/**' ] - paths-ignore: - - '**.md' # Do not need to run CI for markdown changes. + paths: + - 'server-sdk/**' + - '.github/workflows/server-sdk.yml' pull_request: branches: [ main, 'feat/**' ] - paths-ignore: - - '**.md' + paths: + - 'server-sdk/**' + - '.github/workflows/server-sdk.yml' jobs: build-and-run: