Skip to content

Commit

Permalink
feat: add base support to issue forms and related workflow (#710)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfetopito authored Nov 1, 2024
1 parent 73360cc commit 2d80090
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/1-addTokenForm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Add Token
description: Creates a request to add a token to CoW Swap's default token list
title: '[AddToken] `SYMBOL` on `NETWORK`'
title: '[AddToken] `SYMBOL` to `NETWORK`'
labels: [addToken]

body:
Expand Down Expand Up @@ -33,6 +33,7 @@ body:
- MAINNET
- GNOSIS_CHAIN
- ARBITRUM_ONE
- BASE
validations:
required: true
- type: input
Expand Down
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/2-addImageForm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Add Image
description: Creates a request to add a token image to CoW Swap's image repository
title: '[AddImage] `SYMBOL` on `NETWORK`'
title: '[AddImage] `SYMBOL` to `NETWORK`'
labels: [addImage]

body:
Expand All @@ -25,6 +25,7 @@ body:
- MAINNET
- GNOSIS_CHAIN
- ARBITRUM_ONE
- BASE
validations:
required: true
- type: input
Expand Down
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/3-removeTokenForm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Remove Token
description: Creates a request to remove a token from CoW Swap's default token list
title: '[RemoveToken] `SYMBOL` on `NETWORK`'
title: '[RemoveToken] `SYMBOL` from `NETWORK`'
labels: [removeToken]

body:
Expand All @@ -25,6 +25,7 @@ body:
- MAINNET
- GNOSIS_CHAIN
- ARBITRUM_ONE
- BASE
validations:
required: true
- type: input
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/processRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ jobs:
} else if (values.network === 'ARBITRUM_ONE') {
values.chainId = 42161
values.blockExplorer = 'arbiscan'
} else if (values.network === 'BASE') {
values.chainId = 8453
values.blockExplorer = 'basescan'
} else {
values.chainId = 100
values.blockExplorer = 'gnosisscan'
Expand Down

0 comments on commit 2d80090

Please sign in to comment.