We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b7f35c commit 4203696Copy full SHA for 4203696
entrypoint.py
@@ -244,7 +244,7 @@ def main():
244
posts_directory = Path(os.environ.get("POSTS_DIRECTORY", ""))
245
publication_host = os.environ["PUBLICATION_HOST"]
246
247
- changed_files = json.loads(os.environ["CHANGED_FILES"])
+ changed_files = json.loads(os.environ["CHANGED_FILES"] or "{}")
248
repo = os.environ["GITHUB_REPOSITORY"]
249
branch = os.environ["GITHUB_REF"].split("/")[-1]
250
added_files = [Path(f) for f in changed_files.get("added_files", [])]
0 commit comments