mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
16 lines
283 B
YAML
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/' {} \;
|