ci: plugins: Enable dependabot

This commit is contained in:
Richard Hansen 2022-01-27 21:45:53 -05:00
parent f02334e589
commit 737464935e
2 changed files with 11 additions and 0 deletions

View File

@ -146,6 +146,7 @@ if (autoPush) {
await Promise.all(workflows.map(async (fn) => {
await checkFile(`src/bin/plugins/lib/${fn}`, `.github/workflows/${fn}`);
}));
await checkFile('src/bin/plugins/lib/dependabot.yml', '.github/dependabot.yml');
if (!files.includes('package.json')) {
console.warn('no package.json, please create');

View File

@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"