Skip to content

Commit 912a005

Browse files
BUG-996888: [SDK] Ignore compose-multiplatform updates for Dependabot
1 parent eb1438c commit 912a005

1 file changed

Lines changed: 5 additions & 20 deletions

File tree

.github/dependabot.yml

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
4-
# Please see the documentation for all configuration options:
5-
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
6-
71
version: 2
82
registries:
9-
# Specify the private registries here
103
maven:
114
type: maven-repository
125
url: https://bin.pega.io/artifactory/repo2-release/
@@ -22,22 +15,15 @@ registries:
2215
url: https://docker-dev.bin.pega.io/
2316
username: ${{secrets.ENG_ARTIFACTORY_USR}}
2417
password: ${{secrets.ENG_ARTIFACTORY_PWD}}
25-
# note dependabot does not support scanning Helm dependencies.
2618

2719
updates:
28-
- package-ecosystem: "gradle" #Replace gradle with any package ecosystem you want Dependabot to scan, such as npm, maven, or pip.
29-
# Important: If you include any package-ecosystem that does not exist in your repository, Dependabot will fail to run.
30-
31-
# Define the directories where Dependabot should scan for version updates. Use "/" to check the root directory or explicitly define the path, e.g., "/tools/*".
32-
# To scan all directories, use the configuration below.
20+
- package-ecosystem: "gradle"
3321
directories:
3422
- "**/*"
35-
registries: "*" #Includes both private and publicly available ones.
23+
registries: "*"
3624
schedule:
3725
interval: "weekly"
3826
day: "saturday"
39-
#reviewers: #you can enable the reviewers who would like to review the dependabot PRs and merge them with the main/master branch
40-
# The groups section allows combining multiple dependency updates into a single pull request based on matching patterns.
4127
groups:
4228
major:
4329
update-types:
@@ -50,9 +36,8 @@ updates:
5036
- "patch"
5137
patterns:
5238
- "*"
53-
#To customize the Dependabot PR title, use the option below. Comment out if it is not required.
39+
ignore:
40+
- dependency-name: "org.jetbrains.compose:*"
41+
versions: [ ">=1.11.0" ] # compose-multiplatform 1.11.0+ does not support iosX64 target
5442
commit-message:
5543
prefix: "Dependabot - [Gradle] -"
56-
#similarly define for other package-ecosystem, like docker, maven, npm, etc.
57-
#Note: helm is not supported by dependabot
58-
# - package-ecosystem: "docker"

0 commit comments

Comments
 (0)