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 cc8621c commit fceacd1Copy full SHA for fceacd1
entrypoint.py
@@ -91,8 +91,11 @@
91
# Get metadata
92
all_commit = git_repo.iter_commits()
93
all_apt_action_commit = filter(lambda x: (x.message[:12] == '[apt-action]'), all_commit)
94
- apt_action_metadata_str = map(lambda x: re.findall('apt-action-metadata({.+})$', x.message))
95
- apt_action_metadata = map(lambda x: json.loads(x[0]))
+ apt_action_metadata_str = map(
+ lambda x: re.findall('apt-action-metadata({.+})$', x.message),
96
+ all_apt_action_commit,
97
+ )
98
+ apt_action_metadata = map(lambda x: json.loads(x[0]), apt_action_metadata_str)
99
100
logging.debug(apt_action_metadata)
101
0 commit comments