Skip to content

Commit

Permalink
Generated SDK #4869
Browse files Browse the repository at this point in the history
  • Loading branch information
fireblocks_dx_team committed Jun 17, 2024
1 parent 62de55d commit 0bdf63f
Show file tree
Hide file tree
Showing 5 changed files with 162 additions and 174 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/create-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create Pull Request

on:
push:
branches:
- 'fireblocks-api-spec/generated/*'

jobs:
create-pull-request:
runs-on: ubuntu-latest

steps:
- name: Check out repository code
uses: actions/checkout@v4

- name: Create pull request
run: |
gh pr create \
--title "${{ github.event.commits[0].message }}" \
--body "This PR was automatically generated." \
--base master \
--head ${{ github.ref }} \
--reviewer asafs932,zoharsf,YoavBZ
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45 changes: 0 additions & 45 deletions CHANGELOG.md

This file was deleted.

2 changes: 2 additions & 0 deletions docs/models/PolicyRuleCheckResult.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

* `Failure` (value: `'failure'`)

* `Test` (value: `'test'`)




Expand Down
3 changes: 2 additions & 1 deletion models/policy-rule-check-result.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ export interface PolicyRuleCheckResult {

export const PolicyRuleCheckResultStatusEnum = {
Ok: 'ok',
Failure: 'failure'
Failure: 'failure',
Test: 'test'
} as const;

export type PolicyRuleCheckResultStatusEnum = typeof PolicyRuleCheckResultStatusEnum[keyof typeof PolicyRuleCheckResultStatusEnum];
Expand Down
Loading

0 comments on commit 0bdf63f

Please sign in to comment.