有没有办法通知人们更改某些文件?具体来说,我想跟踪 *.sql 文件的更改,并通知我们的开发人员进行更改。如何配置提交后挂钩以进行通知?
5 回答
如果您希望人们通过电子邮件收到通知,并且您希望他们管理自己的通知,那么https://app.github-file-watcher.com/应该可以解决问题 - 它会监控任何公共回购,并会通知您通过电子邮件发送对任何文件、特定文件或符合您条件的某些文件的更改。
git diff-tree
在您的接收后挂钩中使用:
git diff-tree --name-status -rz
您可以 grep 结果以检查某些文件是否被修改(状态“ M
”),如本答案中所述。
您可以在 上找到许多示例gist.github.com
,其中一个使用该--name-status
选项。
我知道已经有一段时间了,但是当我在寻找类似的东西时偶然发现了这个线程。我查看了 Cooper 的 GitHub File Watcher,但它不适用于私人存储库,也不是开源的。
所以我最终构建了自己的解决方案:https ://github.com/jesalg/commit-hawk 。在此处发布此内容以防万一有人仍在寻找这样的工具。
GitHub(截至 2019 年 12 月)在预览版中有一些新的通知功能,包括CODEOWNERS的概念,它允许对如何为更改配置通知进行相当精细的控制。
需要启用预览功能才能使其工作,但接下来需要做的就是CODEOWNERS
在根目录docs/
、 或.github/
.
这是文档中的示例文件:
# This is a comment.
# Each line is a file pattern followed by one or more owners.
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @global-owner1 and @global-owner2 will be requested for
# review when someone opens a pull request.
* @global-owner1 @global-owner2
# Order is important; the last matching pattern takes the most
# precedence. When someone opens a pull request that only
# modifies JS files, only @js-owner and not the global
# owner(s) will be requested for a review.
*.js @js-owner
# You can also use email addresses if you prefer. They'll be
# used to look up users just like we do for commit author
# emails.
*.go docs@example.com
# In this example, @doctocat owns any files in the build/logs
# directory at the root of the repository and any of its
# subdirectories.
/build/logs/ @doctocat
# The `docs/*` pattern will match files like
# `docs/getting-started.md` but not further nested files like
# `docs/build-app/troubleshooting.md`.
docs/* docs@example.com
# In this example, @octocat owns any file in an apps directory
# anywhere in your repository.
apps/ @octocat
# In this example, @doctocat owns any file in the `/docs`
# directory in the root of your repository.
/docs/ @doctocat
我知道这确实是一个老问题,但这里有一个解决方案,您可以通过 repo 上的 github webhook 部署。您还可以自定义和更改代码以查找特定的文件模式并通过电子邮件、slack、文本或其他方式通知您。希望这会有所帮助。
这是它的代码: https ://github.com/DevScoreInc/samples/tree/master/github-file-monitor
这是一个演示,它准确地展示了如何配置它: https ://youtu.be/6HgxIkT8EQ4