This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch add-cooldown-and-support-for-3-11-and-2-11-for-actions in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 3624110384dcc61e7707b01a6a2a9f1b8387fd12 Author: Jarek Potiuk <[email protected]> AuthorDate: Sat Mar 7 23:17:16 2026 +0100 Add cooldown and support for other branches for actions dependabot --- .github/dependabot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b9c56dec1fe..9c9a16c3cc2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,9 +19,30 @@ version: 2 updates: - package-ecosystem: "github-actions" directory: "/" + cooldown: + default-days: 4 schedule: # Check for updates to GitHub Actions every week interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + cooldown: + default-days: 4 + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" + target-branch: v3-1-test + + - package-ecosystem: "github-actions" + directory: "/" + cooldown: + default-days: 4 + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" + target-branch: v2-11-test + - package-ecosystem: pip cooldown: default-days: 4
