trustwallet-assets/.github/workflows/lowercase_files.yml
2019-09-29 10:46:59 +08:00

16 lines
283 B
YAML

name: Lowercase file names
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Lowercase files in blockchain folder
run: |
find blockchains -execdir rename 'y/A-Z/a-z/' {} \;