Skip to content

Loaders

Volodymyr Zaiets edited this page Jun 1, 2021 · 2 revisions

Loaders are responsible for loading data from GitHub.

Each loader is responsible for loading different types of data, as an example, pullrequest loader is responsible for loading pull request data, issue loader - for issue data.

You can choose only one loaded and declare it in configuration.
NOTE: Loader file name will be used as loader name in configuration

If you cannot find the loader that covers your needs, as an example:

  • loading data based on commit hashes
  • loading data based on Pull requests and Issues at the same time
  • etc

you can always create your own loader! See Extention Points

All loaders must implement LoaderInterface and be located in <project-folder>/src/loaders folder.

Avaliable loaders

Name Description
pullrequest responsible to load Pull Request data from Github

Clone this wiki locally