How do I subscribe to a gerrit project, so that I will be notified, whenever a new change is uploaded.
Thanks,
Ravi
Settings->Watched Projects->Browse, select appropriate project, enter branch name if required, hit Watch. Done.
Consider reading the documentation. See documentation here: http://www.mediawiki.org/wiki/Gerrit/watched_projects
To answer Kumar's question (in a comment) -
You can watch a specific folder/file via the reviewers plugin.
Some examples
[filter "*"]
reviewer = john.doe#example.com
[filter "branch:main file:^lib/.*"]
reviewer = jane.doe#example.com
[filter "branch:stable-2.10"]
reviewer = QAGroup
Related
I want to create a JIRA issue using Logic Apps when a row is inserted into a SharePoint online list. I've authenticated myself, but am getting this error. The main part of the message reads as follows:
Field ‘reporter’ of type ‘user’ is not supported. More diagnostic information: x-ms-client-request-id is ’71…’
The Logic App action is "create a new issue V2". The previous version seems to work OK, but has been deprecated.
The SharePoint list also has some rich text fields. Will I be able to upload them? Looking at the JIRA connector documentation I suspect not, but would like to check.
To resolve this, you need to remove the 'reporter' field from the JIRA Issue Type you are using in the Create a new issue task in Logic Apps.
Below is the scenario
1) I got code review suggestion
2) I worked on those suggestions.
3) I closed the Code review request to send a new code review request.
4) But I Did NOT sent any Code review Request. As I remember I forgot to add one Nuget Package. So I tried to add it, but it did nt worked as expected, so I uninstalled some dependent packages as well :|
Can I get the code at stage 3 ? I can not see the Request in Code reviews to unshelve as its closed.
Can someone guide me here ?
You could select Recently finished in your Code Reviews, find the code review that you need, open the code review and click View Shelveset. Check the screenshot below:
I'd like to place all the #QueryParams inside a #BeanParam object and further document there. Is this possible?
currently not supported, but you could open a ticket here to see if it can be added
There is a ticket related and provided a patch. However the patch is based on the opener's private swagger branch. The change is very simple so it's easy to make a patch.
https://github.com/wordnik/swagger-core/issues/532
According to change log this feature was added in 1.3.5 version.
https://github.com/wordnik/swagger-core/wiki/Changelog#v135---apr-28-2014
Can confirm that this works with Jersey2 and swagger-jersey2-jaxrs_2.10. Just remember to annotate the properties in the #BeanParam target class.
sorry for my bad english.
i have server plugin for tfs alerts as mention it is sending mail when something is assign to me.
now , i want that the change fields aslo will me mailed by plugin.
like , state , triage and etc.
or all the fields will be send in email.
can any one share me the logic to do that.
sorry if i cannot defined u my question as i have very bad english.
if code required then i will also send the code . plz help me
search your tfs installation directory for *.xsl files. There should be a bunch of xsl transforms which produce the emails sent by tfs.
I was wondering if Jira's REST API supports the ability to add an attachment to an issue (existing or new) along with uploading the attachment too? Looking at the API documentation I did not see anything however maybe i missed something.
This looks like the method you're after:
http://docs.atlassian.com/jira/REST/latest/#id339692
After you create the issue, you can click on more actions tab of that particular issue.
You would be able to attach files and attach screenshot.
Correct me if I am wrong in understanding your requirement.
Thanks.
in Python:
jira = JIRA(options="Jira_Server_URL", basic_auth=("userID", "Password"))
jira.add_attachment(issue=issue, attachment="attachment_path")
Replace Jira_Server_URL, userID, Password and attachment_path accordingly.