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: