Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/numtide/clean-git-action

Leave no build artifacts behind
https://github.com/numtide/clean-git-action

clean git github-action github-actions

Last synced: 2 days ago
JSON representation

Leave no build artifacts behind

Awesome Lists containing this project

README

        

# Clean Git Status Action - leave no build artifacts behind.

A very small GitHub Action that checks that the `git status` is clean at the
end of a build.

Build process tends to drift and leave files behind that are either changed or
untracked. Generally when that happens, it can be either of those two things:

1. A new build artifact appeared, that should be added to `.gitignore`
2. Some `.lock` file or other generated file was updated and needs to be
committed to the repo.

By adding this simple action to your project, you make sure that these issues
are surfaced early.

## Usage

Add the following step to your action YAML

```yaml:
- uses: numtide/clean-git-action@v2
```

Here is how it looks like on success:

![success](./success.png)

Here is how it looks like on failure:

![failure](./failure.png)

That's it!

## License

MIT - 2021 Numtide