Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/credfeto/action-no-ignored-files
- Owner: credfeto
- License: mit
- Created: 2022-03-21T11:18:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-10T16:05:56.000Z (9 months ago)
- Last Synced: 2024-04-10T19:57:12.908Z (9 months ago)
- Language: Shell
- Size: 1.33 MB
- Stars: 1
- 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
# 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