mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
ci: plugins: Enable dependabot
This commit is contained in:
parent
f02334e589
commit
737464935e
2 changed files with 11 additions and 0 deletions
|
@ -146,6 +146,7 @@ if (autoPush) {
|
||||||
await Promise.all(workflows.map(async (fn) => {
|
await Promise.all(workflows.map(async (fn) => {
|
||||||
await checkFile(`src/bin/plugins/lib/${fn}`, `.github/workflows/${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')) {
|
if (!files.includes('package.json')) {
|
||||||
console.warn('no package.json, please create');
|
console.warn('no package.json, please create');
|
||||||
|
|
10
src/bin/plugins/lib/dependabot.yml
Normal file
10
src/bin/plugins/lib/dependabot.yml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
version: 2
|
||||||
|
updates:
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
||||||
|
- package-ecosystem: "npm"
|
||||||
|
directory: "/"
|
||||||
|
schedule:
|
||||||
|
interval: "daily"
|
Loading…
Reference in a new issue