├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh ├── example.png └── profanity-check ├── check.py └── requirements.txt /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/example.png -------------------------------------------------------------------------------- /profanity-check/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailaiw/mind-your-language-action/HEAD/profanity-check/check.py -------------------------------------------------------------------------------- /profanity-check/requirements.txt: -------------------------------------------------------------------------------- 1 | scikit-learn==0.20.2 2 | profanity-check==1.0.3 --------------------------------------------------------------------------------