Skip to content

Commit 6913a6d

Browse files
chore: update SDK settings
1 parent bb14ef3 commit 6913a6d

File tree

5 files changed

+10
-42
lines changed

5 files changed

+10
-42
lines changed

.github/workflows/create-releases.yml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.github/workflows/release-doctor.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,18 @@ name: Release Doctor
22
on:
33
pull_request:
44
branches:
5-
- main
5+
- master
66
workflow_dispatch:
77

88
jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'stainless-sdks/imagekit-php' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'imagekit-developer/imagekit-php' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@v4
1616

1717
- name: Check release environment
1818
run: |
1919
bash ./bin/check-release-environment
20-
env:
21-
STAINLESS_API_KEY: ${{ secrets.STAINLESS_API_KEY }}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 42
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-3d7da4b8ef2ed30aa32c4fb3e98e498e67402e91aaa5fd4c628fc080bfe82ea1.yml
33
openapi_spec_hash: aaa50fcbccec6f2cf1165f34bc6ac886
4-
config_hash: cf9d50fe62973f4e91ef65c147aabcc1
4+
config_hash: 9f8a678d9d4d06daec522e8deb49e3ad

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
>
66
> This library has not yet been exhaustively tested in production environments and may be missing some features you'd expect in a stable release. As we continue development, there may be breaking changes that require updates to your code.
77
>
8-
> **We'd love your feedback!** Please share any suggestions, bug reports, feature requests, or general thoughts by [filing an issue](https://www.github.com/stainless-sdks/imagekit-php/issues/new).
8+
> **We'd love your feedback!** Please share any suggestions, bug reports, feature requests, or general thoughts by [filing an issue](https://www.github.com/imagekit-developer/imagekit-php/issues/new).
99
1010
The Image Kit PHP library provides convenient access to the Image Kit REST API from any PHP 8.1.0+ application.
1111

@@ -19,12 +19,14 @@ The REST API documentation can be found on [imagekit.io](https://imagekit.io/doc
1919

2020
To use this package, install via Composer by adding the following to your application's `composer.json`:
2121

22+
<!-- x-release-please-start-version -->
23+
2224
```json
2325
{
2426
"repositories": [
2527
{
2628
"type": "vcs",
27-
"url": "[email protected]:stainless-sdks/imagekit-php.git"
29+
"url": "[email protected]:imagekit-developer/imagekit-php.git"
2830
}
2931
],
3032
"require": {
@@ -33,6 +35,8 @@ To use this package, install via Composer by adding the following to your applic
3335
}
3436
```
3537

38+
<!-- x-release-please-end -->
39+
3640
## Usage
3741

3842
This library uses named parameters to specify optional arguments.
@@ -184,4 +188,4 @@ PHP 8.1.0 or higher.
184188

185189
## Contributing
186190

187-
See [the contributing documentation](https://github.com/stainless-sdks/imagekit-php/tree/main/CONTRIBUTING.md).
191+
See [the contributing documentation](https://github.com/imagekit-developer/imagekit-php/tree/master/CONTRIBUTING.md).

bin/check-release-environment

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22

33
errors=()
44

5-
if [ -z "${STAINLESS_API_KEY}" ]; then
6-
errors+=("The STAINLESS_API_KEY secret has not been set. Please contact Stainless for an API key & set it in your organization secrets on GitHub.")
7-
fi
8-
95
if [ -z "${PACKAGIST_USERNAME}" ]; then
106
errors+=("The PACKAGIST_USERNAME secret has not been set. Please set it in either this repository's secrets or your organization secrets")
117
fi

0 commit comments

Comments
 (0)