Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
09d7fbf
Setup generation flow
andrii-balitskyi Apr 3, 2024
62c0b77
Add generate shell script
andrii-balitskyi Apr 3, 2024
0af87ef
Generate SDK
andrii-balitskyi Apr 3, 2024
635da0d
Transfer tests
andrii-balitskyi Apr 3, 2024
7405b3d
ci: Format code
seambot Apr 3, 2024
ca80a5f
Install deps during generate workflow
andrii-balitskyi Apr 3, 2024
2311e96
ci: Generate code
seambot Apr 3, 2024
dfae493
Update generator to fix package version retrieval
andrii-balitskyi Apr 3, 2024
e7cdb29
Disable some lint rules
andrii-balitskyi Apr 3, 2024
5232d95
Update generator to fix lint
andrii-balitskyi Apr 3, 2024
8e6682f
Update generator to add missing wait_for_action_attempt to abstract m…
andrii-balitskyi Apr 3, 2024
abd1a50
Test wait_for_action_attempt options
andrii-balitskyi Apr 4, 2024
12f92ab
ci: Generate code
seambot Apr 4, 2024
ea0d0c8
Update generator to allow setting wait_for_action_attempt on client l…
andrii-balitskyi Apr 4, 2024
dbaf715
Update generator to fix lint
andrii-balitskyi Apr 4, 2024
843d6bd
Update generate workflow
andrii-balitskyi Apr 4, 2024
3d439f3
Remove --rcfile from lint command
andrii-balitskyi Apr 4, 2024
850fb9a
Modify generate and format scripts
andrii-balitskyi Apr 4, 2024
90a74fe
Pin generator and seam types versions
andrii-balitskyi Apr 4, 2024
dab34d9
ci: Generate code
seambot Apr 4, 2024
7379001
Fix devices test, extend init seam test
andrii-balitskyi Apr 4, 2024
9f5bb68
Fix init seam test
andrii-balitskyi Apr 4, 2024
f30b67b
Terminate generate script immediately if any command exits with a non…
andrii-balitskyi Apr 4, 2024
77cc585
Rename .pylintrc to pylintrc
andrii-balitskyi Apr 4, 2024
09eedb6
Update generate script
andrii-balitskyi Apr 5, 2024
811d7dc
Update generator to remove /health endpoints and fix wait_for_action_…
andrii-balitskyi Apr 5, 2024
a0d01bb
ci: Generate code
seambot Apr 5, 2024
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
20 changes: 9 additions & 11 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
---
version: 2
updates:
- package-ecosystem: npm
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: daily
commit-message:
prefix: feat
include: scope
interval: 'daily'
target-branch: 'main'
versioning-strategy: 'auto'
allow:
- dependency-type: production
- dependency-name: '@seamapi/*'
dependency-type: 'development'
ignore:
- dependency-name: '*'
update-types:
- 'version-update:semver-major'
- dependency-name: '@seamapi/*'
update-types: ['version-update:semver-major']
groups:
seam:
dependency-type: production
dependency-type: development
update-types:
- patch
- minor
4 changes: 4 additions & 0 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
run: npm install
- name: Generate code
run: npm run generate
- name: Install dependencies
run: poetry install --sync
- name: Format
run: make format
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
Expand Down
Loading