Add lowercase_files.yml

This commit is contained in:
hewig 2019-09-29 10:33:15 +08:00 committed by GitHub
parent fc62ac02fa
commit 169e32dae5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
.github/workflows/lowercase_files.yml vendored Normal file
View File

@ -0,0 +1,15 @@
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 -type f -exec rename 'y/A-Z/a-z/' {} \;