Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Watch a page in gitlab wiki

How can I watch a page in gitlab wiki and receive notifications every time someone edit/modify the page. I already watch the project and receive notifications for commits, comments etc

like image 875
achronop Avatar asked Jul 09 '14 08:07

achronop


People also ask

What is wiki page in GitLab?

Wiki is a system for maintaining documentation for a project in the GitLab. It is like a Wikipedia which can be editable and given permissions to manage the wiki pages. A Guest can view a wiki page and Developer can create and edit a wiki page.

Does GitLab have wiki?

GitLab is scalable and can be hosted on-premises or on cloud storage. It also includes a wiki, issue-tracking, IDE, and CI/CD pipeline features.

Where are wiki stored GitLab?

Files added in GitLab 11.3 and later: Files are stored in the wiki's Git repository. Files added GitLab 11.2 and earlier: Files are stored in GitLab itself. To add the file to the wiki's Git repository, you must re-upload the file.

How do I create a wiki page in GitLab?

Log in to your GitLab instance. Go to the project for which you want to create a wiki. Click on the Wiki menu item. Click on the New Page button.


2 Answers

I answer my own question after posting in Gital user group.

It is not possible to watch a page in Gitlab wiki. See link below

https://groups.google.com/forum/#!msg/gitlabhq/v887P52tMXI/MqaCWztc7sAJ

like image 120
achronop Avatar answered Oct 19 '22 08:10

achronop


I ran into this problem recently. Not receiving alerts was not an option in our case, so I ended up writing an external program that can generically watch git repositories for commit changes and send emails. Here's the project: https://github.com/datamachines/gitwatch

like image 28
EJW Avatar answered Oct 19 '22 07:10

EJW