├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── generate-docs.sh └── test └── petstore.yml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeebiii/redoc-cli-github-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | dist -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeebiii/redoc-cli-github-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeebiii/redoc-cli-github-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeebiii/redoc-cli-github-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeebiii/redoc-cli-github-action/HEAD/action.yml -------------------------------------------------------------------------------- /generate-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeebiii/redoc-cli-github-action/HEAD/generate-docs.sh -------------------------------------------------------------------------------- /test/petstore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeebiii/redoc-cli-github-action/HEAD/test/petstore.yml --------------------------------------------------------------------------------