In [this example](https://github.com/firebase/functions-samples/blob/9991ec7924c7e813b76368b7040e0496bd3098b2/Python/alerts-to-discord/main.py), the Crashlytics trigger fails because it's calling `value()` on a `SecretParam` and getting an empty string. But, if I add `options.set_global_options(secrets=["DISCORD_WEBHOOK_URL"])`, the trigger works as expected.