feat: Use token price on ethereum if can not get the token price on specified chain #511
This file contains 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
# This workflow checks that the title of PRs (thus commit message) are formatted correctly. | |
name: PR Title Check | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
pull-request-title-check: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: read | |
steps: | |
- name: Checkout repo with config file | |
uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
.github | |
- uses: thehanimo/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
configuration_path: '.github/pull-request-title-check.json' |