@jamesives/github-sponsors-readme-action
Version:
This GitHub Action will automatically add your GitHub Sponsors to your README. It can be configured in multiple ways allowing you to display and breakdown your sponsors by price tier with fallbacks.
9 lines (8 loc) • 377 B
TypeScript
import { ActionInterface, Status } from './constants';
import { generateFile, getSponsors } from './template';
/**
* Initializes and runs the action.
* If no configuration is provided, the action will run with the default configuration.
*/
export default function run(configuration?: ActionInterface): Promise<Status>;
export { generateFile, getSponsors, ActionInterface };