From d8560ceff5433b4f5c6ef6d1934d96a919a9da49 Mon Sep 17 00:00:00 2001 From: szymonrybczak Date: Mon, 7 Oct 2024 19:15:52 +0200 Subject: [PATCH 1/3] fix: remove `fetch-depth` from Reassure actions --- .github/workflows/reassurePerformanceTests.yml | 2 -- .github/workflows/sendReassurePerfData.yml | 2 -- src/App.tsx | 2 ++ 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/reassurePerformanceTests.yml b/.github/workflows/reassurePerformanceTests.yml index fb7a34d6fa01..08a30b0d35eb 100644 --- a/.github/workflows/reassurePerformanceTests.yml +++ b/.github/workflows/reassurePerformanceTests.yml @@ -13,8 +13,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Setup NodeJS uses: ./.github/actions/composite/setupNode diff --git a/.github/workflows/sendReassurePerfData.yml b/.github/workflows/sendReassurePerfData.yml index 884182bfc896..6ae528557faf 100644 --- a/.github/workflows/sendReassurePerfData.yml +++ b/.github/workflows/sendReassurePerfData.yml @@ -12,8 +12,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Setup NodeJS uses: ./.github/actions/composite/setupNode diff --git a/src/App.tsx b/src/App.tsx index 177cc00c7dee..93d748781984 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -45,6 +45,8 @@ type AppProps = { url?: Route; }; +// test + LogBox.ignoreLogs([ // Basically it means that if the app goes in the background and back to foreground on Android, // the timer is lost. Currently Expensify is using a 30 minutes interval to refresh personal details. From 9f29cde8a399c5cbf68bf3cecc09c3b928c367f1 Mon Sep 17 00:00:00 2001 From: szymonrybczak Date: Mon, 7 Oct 2024 19:52:30 +0200 Subject: [PATCH 2/3] test: trigger action --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 93d748781984..d13d55e17c79 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -45,7 +45,7 @@ type AppProps = { url?: Route; }; -// test +// test2 LogBox.ignoreLogs([ // Basically it means that if the app goes in the background and back to foreground on Android, From 20a894db8c91ed0e9db78f1a42c4781fdcc3cf13 Mon Sep 17 00:00:00 2001 From: szymonrybczak Date: Tue, 8 Oct 2024 10:24:21 +0200 Subject: [PATCH 3/3] fix: bump fetch-depth to 500 --- .github/workflows/reassurePerformanceTests.yml | 2 ++ .github/workflows/sendReassurePerfData.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/reassurePerformanceTests.yml b/.github/workflows/reassurePerformanceTests.yml index 08a30b0d35eb..4641ea93f863 100644 --- a/.github/workflows/reassurePerformanceTests.yml +++ b/.github/workflows/reassurePerformanceTests.yml @@ -13,6 +13,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 500 - name: Setup NodeJS uses: ./.github/actions/composite/setupNode diff --git a/.github/workflows/sendReassurePerfData.yml b/.github/workflows/sendReassurePerfData.yml index 6ae528557faf..24f14443194b 100644 --- a/.github/workflows/sendReassurePerfData.yml +++ b/.github/workflows/sendReassurePerfData.yml @@ -12,6 +12,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 500 - name: Setup NodeJS uses: ./.github/actions/composite/setupNode