Community Plugin
View plugin on GitHubgatsby-source-circleci
Source plugin for CircleCI’s API.
Please Note: This plugin was initially created to deliver data for my dashboard and hence only queries the user and projects. If you need more functionality, I’d be happy to review your PR and merge it into this plugin!
Install
npm install --save gatsby-source-circleci
How to use
Prerequisites
Go to Account dashboard and create a new API token.
Save the API key in an environment file like:
CIRCLECI_KEY=your-api-token-here
gatsby-config
Add the plugin and define the API key.
module.exports = {
plugins: [
{
resolve: 'gatsby-source-circleci',
options: {
apiKey: process.env.CIRCLECI_KEY,
}
}
]
}