Replies: 1 comment 2 replies
-
|
I ran into this same thing last year - Apple's API is too blunt. In CI/CD I usually do a two-tier check:
That way you don't block unnecessarily but still catch it before Apple actually cuts you off. The downside is you have to manually track the "last accepted" date somewhere - I use a small JSON file in the repo that gets updated after successful acceptance. If you want zero risk, just fail on any pending and make someone click accept manually. But that's annoying for near-term deadlines. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey team 👋
fetch_program_license_agreement_messagesreturns that an agreement is pending, but in my case Apple shows a due date (e.g., April 15) and deployments still work until then.Is there a way in Fastlane to get that due date?
If not, how are you handling this in CI/CD today?
Would love to know if others have the same issue and what workaround you use.
Beta Was this translation helpful? Give feedback.
All reactions