Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/credfeto/action-case-checker
Git workflow action for checking to see if there are any files or directories in the repo which differ only by case.
https://github.com/credfeto/action-case-checker
Last synced: about 1 month ago
JSON representation
Git workflow action for checking to see if there are any files or directories in the repo which differ only by case.
- Host: GitHub
- URL: https://github.com/credfeto/action-case-checker
- Owner: credfeto
- License: mit
- Created: 2020-05-06T10:56:07.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-10T16:04:45.000Z (9 months ago)
- Last Synced: 2024-04-10T19:52:09.794Z (9 months ago)
- Language: Shell
- Size: 1.92 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# File Case Sensitivity Checker
[![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-)
This action finds any folders files that differ only by case that can cause problems on Windows repositories.
## How to use it?
This is a GitHub action, so it has to be added to a GitHub workflow.
A simple example of running this action on all pushes to the repository would be
to add a `main.yml` file under `.github/workflows` with the following content
```yaml
on: [push]jobs:
case-sensitivity_job:
runs-on: ubuntu-latest
name: check-file-case-sensitivity
steps:
# Checkout the source code so we have some files to look at.
- uses: actions/[email protected]
with:
fetch-depth: 0
# Run the case checker action
- name: Check Case Sensitivity
uses: credfeto/[email protected]
```On each push, it will now run the case sensitivity checker
## Contributors