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

chore: new release #789

Merged
merged 3 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
# branch should not be protected
branch: 'main'
# user names of users allowed to contribute without CLA
allowlist: rmeissner,germartinez,Uxio0,dasanra,francovenica,luarx,DaniSomoza,yagopv,JagoFigueroa,bot*
allowlist: rmeissner,germartinez,Uxio0,dasanra,francovenica,luarx,DaniSomoza,yagopv,JagoFigueroa,jmealy,usame-algan,bot*

# the followings are the optional inputs - If the optional inputs are not given, then default values will be taken
# enter the remote organization name where the signatures should be stored (Default is storing the signatures in the same repository)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/safe-apps-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ on:
required: true
default: 'https://safe-client.safe.global'
schedule:
# At 9:00 on every day-of-week from Monday through Friday
- cron: '0 9 * * 1-5'
# At 4:00 on every day-of-week from Monday through Friday
- cron: '0 4 * * 1-5'

jobs:
e2e:
Expand Down Expand Up @@ -176,4 +176,4 @@ jobs:
CYPRESS_CLIENT_GATEWAY_BASE_URL: ${{ github.event.inputs.configServiceBaseUrl || 'https://safe-client.safe.global' }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
continue-on-error: true
5 changes: 5 additions & 0 deletions apps/ramp-network/src/ramp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ export const ASSETS_BY_CHAIN: { [key: string]: string } = {
'137': 'MATIC_*',
'100': 'XDAI_*',
'43114': 'AVAX_*',
'8453': 'BASE_*',
'324': 'ZKSYNCERA_*',
'1101': 'POLYGONZKEVM_*',
'42161': 'ARBITRUM_*',
'42220': 'CELO_*',
}

export const getRampWidgetUrl = (chainInfo: ChainInfo) => {
Expand Down
12 changes: 12 additions & 0 deletions docs/release-procedure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Releasing to production

The code is being actively developed on the `development` branch. Pull requests are made against this branch.
Everything merged into this branch should be automatically deployed to:
https://safe-apps.dev.5afe.dev

Once we are ready with what we have on `development` we recommend a code freeze just in case someone else merges a new feature.

* Create a PR to merge `development` into `main`
* Once the changes are on `main`, an action will create a new branch `main-bump-versions` creating the changelogs that will need to be merged to `main` AND `development`
* After that an action has to be manually run on the `main` branch ([Action](https://github.com/safe-global/safe-react-apps/actions/workflows/deployment.yml))
* Only when run on `main` it will upload the bundles to the DevOps system and have the deployment ready
Loading