Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean reusable workflow parameters #154

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Changes from all commits
Commits
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
18 changes: 3 additions & 15 deletions .github/workflows/reusable_swap_functional_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,6 @@ on:
required: false
default: 'develop'
type: string
branch_for_ethereum_classic:
required: false
default: 'develop'
type: string
branch_for_litecoin:
required: false
default: 'master'
type: string
branch_for_bitcoin_legacy:
required: false
default: 'master'
Expand All @@ -43,10 +35,6 @@ on:
required: false
default: 'develop'
type: string
branch_for_bsc:
required: false
default: 'develop'
type: string
branch_for_polkadot:
required: false
default: 'develop'
Expand Down Expand Up @@ -85,11 +73,11 @@ jobs:
dir: .
- name: ethereum_classic
repo: app-ethereum
branch: ${{ inputs.branch_for_ethereum_classic }}
branch: ${{ inputs.branch_for_ethereum }}
dir: .
- name: litecoin
repo: app-bitcoin
branch: ${{ inputs.branch_for_litecoin }}
branch: ${{ inputs.branch_for_bitcoin_legacy }}
dir: .
- name: bitcoin_legacy
repo: app-bitcoin
Expand All @@ -105,7 +93,7 @@ jobs:
dir: .
- name: bsc
repo: app-ethereum
branch: ${{ inputs.branch_for_bsc }}
branch: ${{ inputs.branch_for_ethereum }}
dir: .
- name: DOT
repo: app-polkadot
Expand Down
Loading