├── CHANGELOG.md ├── Dockerfile ├── README.md ├── action.yml ├── entrypoint.sh └── src ├── main.sh ├── promtool_check_config.sh └── promtool_check_rules.sh /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peimanja/promtool-github-actions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peimanja/promtool-github-actions/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peimanja/promtool-github-actions/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peimanja/promtool-github-actions/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -l 2 | 3 | promtool check rules $1 4 | 5 | -------------------------------------------------------------------------------- /src/main.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peimanja/promtool-github-actions/HEAD/src/main.sh -------------------------------------------------------------------------------- /src/promtool_check_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peimanja/promtool-github-actions/HEAD/src/promtool_check_config.sh -------------------------------------------------------------------------------- /src/promtool_check_rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peimanja/promtool-github-actions/HEAD/src/promtool_check_rules.sh --------------------------------------------------------------------------------