├── .github ├── renovate.json └── workflows │ ├── depup.yml │ ├── release.yml │ └── reviewdog.yml ├── LICENSE ├── README.md ├── action.yml ├── script.sh └── testdata └── test.yml /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/depup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/.github/workflows/depup.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/.github/workflows/reviewdog.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/action.yml -------------------------------------------------------------------------------- /script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/script.sh -------------------------------------------------------------------------------- /testdata/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reviewdog/action-ansiblelint/HEAD/testdata/test.yml --------------------------------------------------------------------------------