-
Notifications
You must be signed in to change notification settings - Fork 3
Loaders
Olena Orobei edited this page Jun 4, 2021
·
2 revisions
Loaders are responsible for loading data from GitHub.
Each loader is responsible for loading different types of data, as an example, pull request loader is responsible for loading pull request data, issue loader - for issue data.
You can only choose one loader and declare it in the 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 Extension Points
All loaders must implement LoaderInterface and be located under the <project-folder>/src/loaders folder.
| Name | Description |
|---|---|
pullrequest |
responsible for loading pull requests data from Github |