Skip to content

Commit 67dd391

Browse files
authored
Merge branch 'main' into fix-operation-id-casing
2 parents d6db412 + 6ec51d9 commit 67dd391

File tree

2,974 files changed

+329802
-93204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,974 files changed

+329802
-93204
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
github:
2-
- mrlubos
32
- hey-api

.github/workflows/contributors.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Update Contributors
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *' # Every day at 00:00 UTC
6+
workflow_dispatch:
7+
8+
jobs:
9+
update:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/[email protected]
13+
14+
- name: Install dependencies
15+
run: sudo apt-get update && sudo apt-get install -y jq curl
16+
17+
- name: Run update contributors script
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
run: |
21+
chmod +x ./scripts/update-contributors.sh
22+
./scripts/update-contributors.sh
23+
24+
- name: Commit and push if updated
25+
run: |
26+
git config user.name "github-actions[bot]"
27+
git config user.email "github-actions[bot]@users.noreply.github.com"
28+
git add ./docs/partials/contributors-list.md
29+
git diff --cached --quiet || git commit -m "chore(docs): update contributors list"
30+
git push

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: pnpm build
3636

3737
- name: Create Release Pull Request
38-
uses: changesets/action@v1.4.10
38+
uses: changesets/action@v1.5.3
3939
with:
4040
publish: pnpm changeset publish
4141
version: pnpm changeset version

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
2+
.cache
23
.idea
34
.tmp
45
junit.xml
@@ -22,5 +23,13 @@ coverage
2223
test/generated
2324
test/e2e/generated
2425

26+
# debug files
27+
debug
28+
openapi-ts-debug-*
2529
# error files
30+
logs
2631
openapi-ts-error-*
32+
33+
# But DO NOT ignore generated snapshots!
34+
!test/__snapshots__/test/generated
35+
!test/__snapshots__/test/generated/**

README.md

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

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/openapi-ts/README.md

docs/.contributorsignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dependabot-preview[bot]
2+
dependabot[bot]
3+
github-actions[bot]

docs/.contributorssince

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2025-04-20T08:08:34Z

0 commit comments

Comments
 (0)