From 9c270ce58c9c1b5ef8ee40844cfb9b266a8f01dc Mon Sep 17 00:00:00 2001 From: Sophie King <42620618+SofiaRey@users.noreply.github.com> Date: Thu, 5 Dec 2024 16:10:25 -0300 Subject: [PATCH] feat: add dependabot (#1362) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description As part of the [issue #159641](https://github.com/flutter/flutter/issues/159641) regarding Mason being outdated, adding DependaBot to take care of keeping everything up to date is the go-to solution. ## Type of Change - [x] โœจ New feature (non-breaking change which adds functionality) - [ ] ๐Ÿ› ๏ธ Bug fix (non-breaking change which fixes an issue) - [ ] โŒ Breaking change (fix or feature that would cause existing functionality to change) - [ ] ๐Ÿงน Code refactor - [ ] โœ… Build configuration change - [ ] ๐Ÿ“ Documentation - [ ] ๐Ÿ—‘๏ธ Chore --- .github/workflows/dependabot.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/workflows/dependabot.yaml diff --git a/.github/workflows/dependabot.yaml b/.github/workflows/dependabot.yaml new file mode 100644 index 000000000..0457b210a --- /dev/null +++ b/.github/workflows/dependabot.yaml @@ -0,0 +1,7 @@ +version: 2 +enable-beta-ecosystems: true +updates: + - package-ecosystem: "pub" + directory: "/flutter_news_template/hooks" + schedule: + interval: "daily" \ No newline at end of file