fix(ch390): add missing email field in author to resolve CI KeyError - #2018
Merged
Conversation
Co-authored-by: Rbb666 <64397326+Rbb666@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job build
fix(ch390): add missing Aug 11, 2026
email field in author to resolve CI KeyError
Member
|
@copilot 我看软件包仓库有类似的:tag不存在/分支填写错误/email字段没有填写的情况,请扫描并修复仓库中存在的类似问题 |
Contributor
Author
已对仓库中所有 820 个软件包进行了全面扫描,检查以下三类问题:
结论:本 PR 修复的 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
CI was failing with
Error message:'email'— a PythonKeyError— becauseperipherals/ch390/package.jsondeclaredauthorwith only anamefield, andci.pyunconditionally accessespackage_info['author']['email'].Changes
peripherals/ch390/package.json: Addedemail(liucj1228@outlook.com, sourced from upstream commit history) andgithub(HosakaSu) to theauthordict."author": { - "name": "Liu Changjie" + "name": "Liu Changjie", + "email": "liucj1228@outlook.com", + "github": "HosakaSu" },