├── .github └── workflows │ └── pull-request-links.yaml ├── .readthedocs.yaml ├── LICENSE ├── README.md ├── docs ├── conf.py └── index.rst └── preview ├── README.md ├── action.yaml ├── pull-request-example.png └── scripts └── edit-description.js /.github/workflows/pull-request-links.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/.github/workflows/pull-request-links.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/README.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | -------------------------------------------------------------------------------- /preview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/preview/README.md -------------------------------------------------------------------------------- /preview/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/preview/action.yaml -------------------------------------------------------------------------------- /preview/pull-request-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/preview/pull-request-example.png -------------------------------------------------------------------------------- /preview/scripts/edit-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/readthedocs/actions/HEAD/preview/scripts/edit-description.js --------------------------------------------------------------------------------