Date : March 29 2020, 07:55 AM
This might help you I don't think there's any official API to work with the Play Store. There are, though, many unofficial APIs out there; This one seems promising, if it's up to date. You can use it to grab all the comments on your app, then use the AccountManager to get the user Google ID, and compare their ID with the commentors IDs to check whether they have left a comment or not.
|
Date : March 29 2020, 07:55 AM
To fix the issue you can do at the moment I am starting the build in Jenkins when a comment is written in the Merge request in Gitlab. I do it in Jenkins job configuration like , Just add to pipeline's gitlab trigger: triggers {
gitlab(
...
triggerOnNoteRequest: true,
noteRegex: "restart pipeline",
...
)
}
|
Gitlab-ci.yml to create merge reqeust
Date : March 29 2020, 07:55 AM
Any of those help You can create a MR in Gitlab using git push options. To create a MR to merge dev into master using git, run the following command git push origin HEAD:dev -o merge_request.create -o merge_request.target=master
|
Date : March 29 2020, 07:55 AM
|
How to set up a Slack channel to directly link to GitLab issues and merge requests?
Date : March 29 2020, 07:55 AM
To fix the issue you can do If your needs are more specific than what the default GitLab integration provides, you can make your own Slack App/Bot. There are a few ways to accomplish what you're looking for, the most typical solution would be a slash command as Thomas Kainrad mentioned.
|