add token from new branch #7
Workflow file for this run
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
on: | |
pull_request: | |
branches: | |
- test/github-workflow | |
name: Token List Generation | |
jobs: | |
generate_lists: | |
name: Generate Token Lists | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set Node-js version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.14.2' | |
- name: Install Dependencies | |
run: yarn install --ignore-engines | |
- name: Build ./dist | |
run: yarn build | |
- name: Generate Token List | |
run: yarn generate-auto | |
- name: CI Check | |
run: yarn ci-check-auto | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
title: Token list updated | |
body: | | |
This PR updates the token list. | |
branch: chore/update-token-list | |
base: test/github-workflow |