1

Is there a way to get a feed of updates to a file in a Github repo? Note I don't own the repo, I just wanted to be informed when a file (the release notes) changes and ideally have that in an MS Teams channel.

parsley72
  • 8,449
  • 8
  • 65
  • 98

2 Answers2

0

GitHub feeds are for a repository as a whole, or for user activity.

There is no feed on a file-by-file basis.

You would need to install a push event webhook listener, as I mention here, in order to pull, get the list of files of that pull, and send you a notification of your file is part of the pull.
In short: a manual feed notification mechanism.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
0

Every file has its commits RSS.

In example for the file

https://github.com/quarto-dev/quarto-cli/blob/main/news/changelog-1.4.md

the commits feed RSS is this

https://github.com/quarto-dev/quarto-cli/commits/main/news/changelog-1.4.md.atom

aborruso
  • 4,938
  • 3
  • 23
  • 40