Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/credfeto/action-no-ignored-files

Github action for checking that there are no ignored files in the repo
https://github.com/credfeto/action-no-ignored-files

Last synced: about 1 month ago
JSON representation

Github action for checking that there are no ignored files in the repo

Awesome Lists containing this project

README

        

# No Ignored files

This action finds any files that should have been ignored.

## 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
add a `main.yml` file under `.github/workflows` with the following content
```yaml
on: [push]

jobs:
find-ignored-files_job:
runs-on: ubuntu-latest
name: find-ignored-files
steps:
# Checkout the source code so there are some files to look at.
- uses: actions/[email protected]
with:
fetch-depth: 0
# Run the ignored files checker action
- name: Look for ignored files
uses: credfeto/[email protected]
```

On each push, it will now run the ignored files check

## Contributors