From 63a8a646a9c6299601c7280a76403f9dd2a3babb Mon Sep 17 00:00:00 2001 From: Hemant Singh Bisht Date: Tue, 12 May 2026 11:55:53 +0530 Subject: [PATCH 1/2] chore: suppress dependabot PRs for all sample directories Add ignore: "*" to existing sample entries and add missing nested uiBundles paths so Dependabot closes all 14 open bot PRs on next run. --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bf255c3..803474f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,27 +15,53 @@ updates: open-pull-requests-limit: 0 schedule: interval: "weekly" + ignore: + - dependency-name: "*" - package-ecosystem: "npm" directory: "/samples/ui-bundle-template-app-react-sample-b2x" open-pull-requests-limit: 0 schedule: interval: "weekly" + ignore: + - dependency-name: "*" - package-ecosystem: "npm" directory: "/samples/webapp-template-app-react-sample-b2e-experimental" open-pull-requests-limit: 0 schedule: interval: "weekly" + ignore: + - dependency-name: "*" - package-ecosystem: "npm" directory: "/samples/webapp-template-app-react-sample-b2x-experimental" open-pull-requests-limit: 0 schedule: interval: "weekly" + ignore: + - dependency-name: "*" - package-ecosystem: "npm" directory: "/samples/native-mobile-rental-tenant-app" open-pull-requests-limit: 0 schedule: interval: "weekly" + ignore: + - dependency-name: "*" + + - package-ecosystem: "npm" + directory: "/samples/ui-bundle-template-app-react-sample-b2x/force-app/main/default/uiBundles/propertyrentalapp" + open-pull-requests-limit: 0 + schedule: + interval: "weekly" + ignore: + - dependency-name: "*" + + - package-ecosystem: "npm" + directory: "/samples/ui-bundle-template-app-react-sample-b2e/force-app/main/default/uiBundles/propertymanagementapp" + open-pull-requests-limit: 0 + schedule: + interval: "weekly" + ignore: + - dependency-name: "*" From d1f5eb9d69a45e7f0d0a57bd1faa6bdb6adc2777 Mon Sep 17 00:00:00 2001 From: Hemant Singh Bisht Date: Tue, 12 May 2026 12:03:30 +0530 Subject: [PATCH 2/2] chore: ignore fast-uri and axios in root dependabot entry Closes open bot PRs #258 and #250 by adding them to the root ignore list. --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 803474f..c60ab03 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,8 @@ updates: - dependency-name: "@salesforce/ui-bundle-template-app-react-sample-b2x" - dependency-name: "@salesforce/webapp-template-app-react-sample-b2e-experimental" - dependency-name: "@salesforce/webapp-template-app-react-sample-b2x-experimental" + - dependency-name: "fast-uri" + - dependency-name: "axios" - package-ecosystem: "npm" directory: "/samples/ui-bundle-template-app-react-sample-b2e"