Skip to content

Commit

Permalink
fix: run all when no id specified
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra committed Mar 12, 2024
1 parent 246dda6 commit c9f8980
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: scheduled-all
id: all
run: yarn start --type ${{ inputs.type || 'proposal' }}
if: ${{ github.event_name == 'schedule' }}
if: ${{ github.event_name == 'schedule' || inputs.ids == '' }}
env:
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
RPC_MAINNET: ${{ secrets.RPC_MAINNET }}
Expand All @@ -92,7 +92,7 @@ jobs:
- name: scheduled-metis
id: metis
run: yarn start --type payload --chainId 1088
if: ${{ github.event_name == 'schedule' }}
if: ${{ github.event_name == 'schedule' || inputs.ids == '' }}
env:
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
RPC_MAINNET: ${{ secrets.RPC_MAINNET }}
Expand All @@ -112,7 +112,7 @@ jobs:
- name: scheduled-scroll
id: scroll
run: yarn start --type payload --chainId 534352
if: ${{ github.event_name == 'schedule' }}
if: ${{ github.event_name == 'schedule' || inputs.ids == '' }}
env:
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
RPC_MAINNET: ${{ secrets.RPC_MAINNET }}
Expand Down
2 changes: 1 addition & 1 deletion lib/aave-helpers
Submodule aave-helpers updated 711 files
2 changes: 1 addition & 1 deletion script/E2EPayload.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ contract E2EPayload is Script, ProtocolV3TestBase {

string[] memory inputs = new string[](7);
inputs[0] = 'npx';
inputs[1] = '@bgd-labs/aave-cli@^0.7.0';
inputs[1] = '@bgd-labs/aave-cli@^0.8.0';
inputs[2] = 'diff-snapshots';
inputs[3] = beforePath;
inputs[4] = afterPath;
Expand Down

0 comments on commit c9f8980

Please sign in to comment.