Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ignore conductor-clients changes in GitHub Action workflows #259

Merged
merged 1 commit into from
Sep 17, 2024
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
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: CI

on: [ push, pull_request ]
on:
push:
paths-ignore:
- 'conductor-clients/**'
pull_request:
paths-ignore:
- 'conductor-clients/**'

jobs:
build:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release_draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- main
paths-ignore:
- 'conductor-clients/**'

permissions:
contents: read
Expand Down
8 changes: 8 additions & 0 deletions conductor-clients/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Conductor Clients

This directory serves as the central repository for various officially supported Conductor client projects.

> **Note (2024-09-17):**
>
> Currently, it only contains the incubating Java client/SDK v3.
>
> 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.
Loading