mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
fc235f7602
* Include iBBT Utility Token to the Trustwallet * InterGalactic Credits CREE InterGalactic Credits (CREE) are used as a multi-purpose mediation instrument to interact with other decentralized interPlanetary Nodes. * Add 2 more coins for iBBT. iBBT Alexander Commemorative Token, and GEO Rewards ORCA. * Added 4 new iBBT.io Tokens Added to Trust Wallet 4 new ibbt.io tokens; Mythril Ore (ORE) Med. Cannabis Note (₵) Dollar Blocknote ($) Realblock.io (REAL) * Add Generator actions * Checksum * Optimised images with calibre/image-actions * rm lowercase * Fix syntax * Change syntax * Add on push * Move uses from step * Define uses in run in each step * try * Fix token handler * Use action to push changes to pr branch * GITHUB_REF Co-authored-by: Antonis Valamontes <tony@geopay.me> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
26 lines
730 B
YAML
26 lines
730 B
YAML
name: Generator
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v1.4.1
|
|
with:
|
|
node-version: 12
|
|
- name: Generate list
|
|
run: |
|
|
npm install
|
|
npm run gen:list
|
|
git config --local user.email "trustbot@trustwallet.com"
|
|
git config --local user.name "Trust Wallet Actions Bot"
|
|
git commit -m "Generate whitelist and blacklist" -a
|
|
- name: Push changes
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
|
|
branch: ${GITHUB_REF} |