├── .env ├── .github └── workflows │ └── checker.yml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh └── src ├── checker.sh ├── ensure.sh ├── github.sh ├── github_actions.sh ├── main.sh └── misc.sh /.env: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/.github/workflows/checker.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /src/checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/src/checker.sh -------------------------------------------------------------------------------- /src/ensure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/src/ensure.sh -------------------------------------------------------------------------------- /src/github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/src/github.sh -------------------------------------------------------------------------------- /src/github_actions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/src/github_actions.sh -------------------------------------------------------------------------------- /src/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/src/main.sh -------------------------------------------------------------------------------- /src/misc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodelyTV/check-critical-files/HEAD/src/misc.sh --------------------------------------------------------------------------------