Adjust testflight cleanup interval to 30 days

Been using this for a while but haven't committed it.
This commit is contained in:
Dean Herbert 2022-10-31 12:55:23 +09:00
parent 3f17c206d2
commit 4213abfc46
1 changed files with 2 additions and 2 deletions

View File

@ -138,10 +138,10 @@ platform :ios do
end
lane :testflight_prune_dry do
clean_testflight_testers(days_of_inactivity:45, dry_run: true)
clean_testflight_testers(days_of_inactivity:30, dry_run: true)
end
lane :testflight_prune do
clean_testflight_testers(days_of_inactivity: 45)
clean_testflight_testers(days_of_inactivity: 30)
end
end