Skip to content

Commit 32e50d1

Browse files
authored
Update scripts/automated_ingestion/eessitarball.py
1 parent 9a71d1e commit 32e50d1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/automated_ingestion/eessitarball.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,10 @@ def make_approval_request(self):
397397
pr_title = '[%s] Ingest %s' % (self.cvmfs_repo, filename)
398398
if self.sig_verified:
399399
pr_body += "\n\n:heavy_check_mark: :closed_lock_with_key: The signature of this tarball has been successfully verified:\n"
400-
pr_body += f" {self.signatures}"
400+
for path, meta in self.signatures.items():
401+
identity = meta.get("identity", "unknown")
402+
namespace = meta.get("namespace", "unknown")
403+
pr_body += f"- `{path}`: identity=`{identity}`, namespace=`{namespace}`\n"
401404
pr_title += ' :closed_lock_with_key:'
402405
self.git_repo.create_pull(title=pr_title, body=pr_body, head=git_branch, base='main')
403406
except Exception as err:

0 commit comments

Comments
 (0)