Skip to content

Commit e40023f

Browse files
authored
Merge pull request #259 from conductor-oss/fix/clients-path-ignored-from-ci
Ignore `conductor-clients` changes in GitHub Action workflows
2 parents affd819 + 0f1e3e4 commit e40023f

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.github/workflows/ci.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: CI
22

3-
on: [ push, pull_request ]
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'conductor-clients/**'
7+
pull_request:
8+
paths-ignore:
9+
- 'conductor-clients/**'
410

511
jobs:
612
build:

.github/workflows/release_draft.yml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- main
7+
paths-ignore:
8+
- 'conductor-clients/**'
79

810
permissions:
911
contents: read

conductor-clients/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
# Conductor Clients
2+
3+
This directory serves as the central repository for various officially supported Conductor client projects.
4+
5+
> **Note (2024-09-17):**
6+
>
7+
> Currently, it only contains the incubating Java client/SDK v3.
8+
>
9+
> We are in the process of refactoring our clients/SDKs (see: [conductor-sdk](https://github.com/conductor-sdk)) and will be moving them here soon.

0 commit comments

Comments
 (0)