From e82718678fd3289b5cf213b87434418bbc983195 Mon Sep 17 00:00:00 2001
From: "stainless-app[bot]"
<142633134+stainless-app[bot]@users.noreply.github.com>
Date: Fri, 17 Jul 2026 17:15:40 +0000
Subject: [PATCH 1/2] feat(stlc): configurable CI runner and
private-production-repo support in workflow templates
---
.github/workflows/ci.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 23c20df9..a48e4be5 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -18,7 +18,7 @@ jobs:
lint:
timeout-minutes: 10
name: lint
- runs-on: ${{ github.repository == 'stainless-sdks/imagekit-diversion-csharp' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
+ runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
steps:
@@ -37,7 +37,7 @@ jobs:
build:
timeout-minutes: 10
name: build
- runs-on: ${{ github.repository == 'stainless-sdks/imagekit-diversion-csharp' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
+ runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
steps:
@@ -54,7 +54,7 @@ jobs:
test:
timeout-minutes: 10
name: test
- runs-on: ${{ github.repository == 'stainless-sdks/imagekit-diversion-csharp' && 'depot-windows-2022' || 'windows-latest' }}
+ runs-on: ${{ startsWith(github.repository, 'stainless-sdks/') && 'depot-windows-2022' || 'windows-latest' }}
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
From e702ef108045dfe60d645d96a23dab7ffb6203b1 Mon Sep 17 00:00:00 2001
From: "stainless-app[bot]"
<142633134+stainless-app[bot]@users.noreply.github.com>
Date: Fri, 17 Jul 2026 17:16:06 +0000
Subject: [PATCH 2/2] release: 6.3.0
---
.release-please-manifest.json | 2 +-
CHANGELOG.md | 8 ++++++++
src/Imagekit/Imagekit.csproj | 2 +-
3 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 5709eb5d..e704c06d 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "6.2.0"
+ ".": "6.3.0"
}
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 251685c9..23e14e0c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog
+## 6.3.0 (2026-07-17)
+
+Full Changelog: [v6.2.0...v6.3.0](https://github.com/imagekit-developer/imagekit-dotnet/compare/v6.2.0...v6.3.0)
+
+### Features
+
+* **stlc:** configurable CI runner and private-production-repo support in workflow templates ([e827186](https://github.com/imagekit-developer/imagekit-dotnet/commit/e82718678fd3289b5cf213b87434418bbc983195))
+
## 6.2.0 (2026-07-14)
Full Changelog: [v6.1.0...v6.2.0](https://github.com/imagekit-developer/imagekit-dotnet/compare/v6.1.0...v6.2.0)
diff --git a/src/Imagekit/Imagekit.csproj b/src/Imagekit/Imagekit.csproj
index e3a0a2c9..872c7cd3 100644
--- a/src/Imagekit/Imagekit.csproj
+++ b/src/Imagekit/Imagekit.csproj
@@ -3,7 +3,7 @@
Image Kit C#
Imagekit
- 6.2.0
+ 6.3.0
The official .NET library for the Image Kit API.
Library
README.md