From b298b115c867aff4042e74526fa63c143bcd13eb Mon Sep 17 00:00:00 2001 From: Brian Beckerle <49686530+brainbicycle@users.noreply.github.com> Date: Fri, 9 Aug 2024 14:48:05 -0400 Subject: [PATCH] chore(ci): ignore ci android images in renovate (#10592) * ignore ci android images in renovate Co-authored-by: George Kartalis * dear lord ci --------- Co-authored-by: George Kartalis --- renovate.json | 7 +++++++ src/app/Scenes/MyProfile/MyProfilePayment.tsx | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index b989c61990c..4c401101de3 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,12 @@ { "extends": ["@artsy:app", ":automergePatch", "helpers:pinGitHubActionDigests"], + "packageRules": [ + { + "matchDatasources": ["docker"], + "matchPackageNames": ["cimg/android"], + "enabled": false + } + ], "assignees": ["gkartalis", "brainbicycle"], "reviewers": ["gkartalis", "brianbicycle"] } diff --git a/src/app/Scenes/MyProfile/MyProfilePayment.tsx b/src/app/Scenes/MyProfile/MyProfilePayment.tsx index e01079f0c7c..03696732064 100644 --- a/src/app/Scenes/MyProfile/MyProfilePayment.tsx +++ b/src/app/Scenes/MyProfile/MyProfilePayment.tsx @@ -30,7 +30,7 @@ import { const NUM_CARDS_TO_FETCH = 100 // stupidly high because most people will have 1 or *maybe* 2 -// VERY DIRTY HACK +// VERY DIRTY HACK! // When creating a new card we need to wait for a refresh of this screen before navigating back. // At the moment the only way for these screens to communicate is via global state, since we can't // transmit react contexts accross screens.