Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ensure we have an empty string instead of null for
selectedRepo
When running the `extract-translation-source-files` workflow via dispatch `selectedRepo` pulls from `inputs.repo` which is always a string (but can be an empty string). The logic throughout the rest of the workflow assumes an empty string, but fails with null or undefined. This just add a null coalesce that defaults `selectedRepo` to an empty string so the rest of the logic works.
- Loading branch information