Skip to content

Commit

Permalink
Merge branch 'main' into enable-new-connector
Browse files Browse the repository at this point in the history
  • Loading branch information
JeevaRamu0104 authored Dec 4, 2023
2 parents f80dee0 + a1d2f14 commit 5ae1fb3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release-new-version.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: Release a new hyperswitch version

# on:
# schedule:
# - cron: "30 14 * * 0-4" # Run workflow at 8 PM IST every Sunday-Thursday
on:
schedule:
- cron: "30 14 * * 0-4" # Run workflow at 8 PM IST every Sunday-Thursday

# workflow_dispatch:
workflow_dispatch:

# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# cancel-in-progress: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request_target:
types:
- closed
# on:
# pull_request_target:
# types:
# - closed

env:
# Allow more retries for network requests in cargo (downloading crates) and
Expand Down
10 changes: 8 additions & 2 deletions src/entryPoints/hyperswitch/HyperSwitchApp.res
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,14 @@ let make = () => {
renderShow={profileId =>
<Webhooks webhookOnly=false showFormOnly=false />}
/>
| list{"recon"} => <Recon />
| list{"sdk"} => <SDKPage />
| list{"recon"} =>
<FeatureFlagEnabledComponent isEnabled=featureFlagDetails.recon>
<Recon />
</FeatureFlagEnabledComponent>
| list{"sdk"} =>
<FeatureFlagEnabledComponent isEnabled=featureFlagDetails.openSDK>
<SDKPage />
</FeatureFlagEnabledComponent>
| list{"3ds"} => <HSwitchThreeDS />
| list{"account-settings"} =>
<FeatureFlagEnabledComponent isEnabled=featureFlagDetails.sampleData>
Expand Down

0 comments on commit 5ae1fb3

Please sign in to comment.