Bump up version to 1.3.0-rc.1 #595
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Conditional Workflow | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - dev | ||
| push: | ||
| branches: | ||
| - dev | ||
| jobs: | ||
| Timestamp: | ||
| if: ${{ github.event.pull_request.head.repo.full_name == github.repository }} | ||
| uses: storyprotocol/gha-workflows/.github/workflows/reusable-timestamp.yml@main | ||
| pr_build_and_test: | ||
| if: github.event_name == 'pull_request' | ||
| needs: [Timestamp] | ||
| uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-unit-test-workflow.yml@main | ||
| with: | ||
| sha: ${{ github.event.pull_request.head.sha }} | ||
| ENVIRONMENT: "odyssey" | ||
| secrets: | ||
| WALLET_PRIVATE_KEY: ${{ secrets.WALLET_PRIVATE_KEY }} | ||
| TEST_WALLET_ADDRESS: ${{ secrets.TEST_WALLET_ADDRESS }} | ||
| push_build_and_test: | ||
| if: github.event_name == 'push' | ||
| uses: storyprotocol/gha-workflows/.github/workflows/reusable-build-integration-test-workflow.yml@main | ||
|
Check failure on line 30 in .github/workflows/pr-internal.yml
|
||
| with: | ||
| sha: ${{ github.sha }} | ||
| ENVIRONMENT: "odyssey" | ||
| secrets: | ||
| WALLET_PRIVATE_KEY: ${{ secrets.WALLET_PRIVATE_KEY }} | ||
| TEST_WALLET_ADDRESS: ${{ secrets.TEST_WALLET_ADDRESS }} | ||