You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classModifyEnum(enum.Enum):
""" 规范: https://git-scm.com/docs/git-diff#Documentation/git-diff.txt-git-diff-filesltpatterngt82308203 下述修改我们 知道怎么触发的标记为 [√] 不知道怎么触发的标记为 [x] //未成功测试处理的修改类型, 通过 git diff 文档给定的格式进行操作 [√] A: addition of a file [x] C: copy of a file into a new one [√] D: deletion of a file [√] M: modification of the contents or mode of a file [√] R: renaming of a file [x] T: change in the type of the file [x] U: file is unmerged (you must complete the merge before it can be committed) [x] X: "unknown" change type (most probably a bug, please report it) """modify_addition='A'modify_copy='C'modify_deletion='D'modify_modification='M'modify_renaming='R'modify_file_is_unmerged='U'modify_change_type='T'modify_unknown='X'
我是页眉
又到了夏天, 蝉又要叫了
0x00. 做了一个什么?
一个个人博客程序 : 通过 github actions 将 github repository 中的 markdown 文件发布到该 repository 的 issues 中 .
抄自 : https://github.com/Sep0lkit/git-issues-blog
0x01. 局限性
1.1. markdown 链接语法替换问题
对 markdown 中的链接语法
[](http 巴拉巴拉)
支持的不够完善 .当前是通过 EL(Expression Language) 表达式完成的匹配与替换
关于这个规则如果看到的你有更好的改进方案 , 我很乐意修正这个实现细节
1.2. git 文件变化识别问题
0x02. 文件内容
如果想查看实现细节或者自己有兴趣实现一次 ,
.github
文件中留有各种文件和说明0x03. 关于使用方式
我看是有简单的给人用的方式的, 我还没学会, 又不想学了, 但是现在简单的方式又不够优雅, 真实矛盾:
.github/workflows/github_host.yml
文件的ISSUES_MAP_FILE_NUMBER: '9'
.github/github_actions/issues_config.json
ISSUES_FOOTER_PATH: '.github/github_actions/issues_footer.md'
ISSUES_HEADER_PATH: '.github/github_actions/issues_header.md'
0x04. 实现细节
4.1. 主流程
yml
居中调度install_dependence_xxx.sh
安装依赖 (python . 等)git_action_practice.py
实现从 repository 到 issue 的负值粘贴4.2.
git_action_practice.py
细节pygithub
和requsts
调用github api
实现 repository 文件的拉取 和 issues 内容的上传
git log
获取仓库变化时间和 哈希git diff
根据按仓库变化的 哈希 获取变化的文件路径和repository : issue
的文件映射持久化到 一个指定的 issue 中(json 格式) .这个文件也记录上次成功执行的
commit hash
0x06. 其他内容
证明文件链接有一定可用性
证明图片链接有一定可用性
我是页脚
The text was updated successfully, but these errors were encountered: