diff --git a/.github/workflows/lowercase_files.yml b/.github/workflows/lowercase_files.yml new file mode 100644 index 000000000..e9a475f7d --- /dev/null +++ b/.github/workflows/lowercase_files.yml @@ -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/' {} \;