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 e61c4f6 commit 5bb0739Copy full SHA for 5bb0739
entrypoint.py
@@ -90,7 +90,7 @@
90
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)
+ all_apt_action_commit = list(filter(lambda x: (x.message[:12] == '[apt-action]'), all_commit))
94
apt_action_metadata_str = list(
95
map(
96
lambda x: re.findall('apt-action-metadata({.+})$', x.message),
@@ -99,6 +99,8 @@
99
)
100
apt_action_metadata = list(map(lambda x: json.loads(x[0]), apt_action_metadata_str))
101
102
+ logging.debug(list(all_commit))
103
+ logging.debug(all_apt_action_commit)
104
logging.debug(apt_action_metadata_str)
105
106
for check_metadata in apt_action_metadata:
0 commit comments