Populates the .all-contributorsrc for a repository using all-contributors-for-repository. π
npx populate-all-contributors-for-repository --owner Owner --repository TestRepository
populate-all-contributors-for-repository
will add each contributor automatically detected by all-contributors-for-repository
to your .all-contributorsrc
file.
[!NOTE] Contributors are added in series using
npx all-contributors-cli add
. See all-contributors/cli#362 for a feature request to speed this up.
Alternately, this can be called programmatically:
npm i populate-all-contributors-for-repository
import { populateAllContributorsForRepository } from "populate-all-contributors-for-repository";
await populateAllContributorsForRepository({
owner: "JoshuaKGoldberg",
repo: "create-typescript-app",
});
populateAllContributorsForRepository
takes in the same RawAllContributorsForRepositoryOptions
options type as all-contributors-for-repository
's getAllContributorsForRepository
.
See all-contributors-for-repository
> Options.
See .github/CONTRIBUTING.md
, then .github/DEVELOPMENT.md
.
Thanks! π
Josh Goldberg β¨ π» π π π€ π π§ π π§ |
π This package was templated with
create-typescript-app
using thecreate
engine.