I'm working with a Firebase Cloud Functions project and it has two branches main
for production and development
for staging. Because production and staging are linked to different Firebase projects both branches need different config files (such as serviceAccountKey.json)
my question is:
Is possibile whenever I make a PR in Github to pick which changes need to be merged, and which to be discarded?
Because every time I merge, the production config files are overwritten by the staging ones.
I don't know if that's the proper way to manage those type of situations but in general I would like to know if such a feature is possible.
Thanks.