KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
clean-git-action
★ 10
Open GitHub ↗
Leave no build artifacts behind
Download README (.md)
Explore Similar Repositories
Basketball_Video-Dataset
:
NCAA Basketball Data set which is a multi-player basketball data set with dense temporal event annotations in long videos
Valeyard
:
An easy-to-script bot written in PHP which attempts to link IRC with SQL database, allowing for integration between platforms
BPGAN-Signal-Compression
:
No description available.
AowuaTranslator
:
Aowua Translator
libraries-solidity
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
clean-git-action
?
Download (.md)
# 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:  Here is how it looks like on failure:  That's it! ## License MIT - 2021 Numtide