Package Exports
- projen-automate-it
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (projen-automate-it) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
About
projen-automate-it is a tiny library that helps you generate workflow snippets for projen.
ProjenYarnUpgrade workflow
Previously introduced in this module. Now it's deprecated. Please use the dependency upgrade workflow from projen instead.
Sample
const { Automation } = require('projen-automate-it');
const automation = new Automation(project, {
automationToken: AUTOMATION_TOKEN,
});
// generate auto-approve workflow
automation.autoApprove();
// generate auto-merge workflow
automation.autoMerge();