18,321 questions
Best practices
0
votes
2
replies
31
views
How to handle a multi-repository Gitlab (or GitHub) project?
I have a project to build requiring Java, C++, Python and Angular for its beginning.
I've chosen to build a multi-repository project (on Gitlab) rather than a mono-repository one.
But I'm wondering: ...
0
votes
1
answer
43
views
How to enable color support for the view detail page for the test summary on GitLab?
In a self-hosted GitLab Community Edition v18.10.1, I execute some jobs that produce color output in their log. (The debian slim docker container that produces the log uses TERM="xterm-256color&...
0
votes
0
answers
64
views
Downstream pipeline not created to call custom component
I use a GitLab CI/CD pipeline and I develop a new job to include a custom component developped by another team in my company.
Inside the .gitlab-ci.yml file, there is an include of the same file 3 ...
Best practices
0
votes
1
replies
42
views
gitlab-runner behavior when run-untagged is set to true
Looking for information on this and can't seem to find it anywhere in the GitLab docs.
I'm currently setting up a scenario where our team will ultimately have our GitLab runners setup to handle ...
-1
votes
1
answer
48
views
GitLab CI is not running certain jobs during merge request pipeline but all of them run during main pipeline
I am using GitLab Community Edition v18.9.1. I created a pipeline that builds Docker images and runs specific tasks for the main branch and for merge requests.
My .gitlab-ci.yml looks like:
---
...
Advice
1
vote
0
replies
46
views
how to fetch public projects for a particular user or list of users using GraphQL
So my goal is to build a map showcasing users contributions to the FOSS projects and I am trying to building it for my FOSS community. I was reading documentations of gitlab for few hours, I dont find ...
-4
votes
0
answers
72
views
JetBrains GitLab Plugin: "GraphQL error: empty response" when loading merge requests
I'm using a JetBrains IDE (IntelliJ IDEA 2025.3 on Windows) with the GitLab integration plugin.
When I try to view a merge request (for example, !1726), I get the following error in the IDE :
Failed ...
-2
votes
0
answers
23
views
Gitlab - Homepage to display list of public repos, but hide the repos' activites
I wanted to display to the public my list of repositories on my homepage, but the companion activities for these repositories are displayed as well. How do i hide the latter from public viewing?
-2
votes
1
answer
66
views
Publish NPM package to internal GitLab Package Registry Pipeline Error PUT 403
Gitlab Pipeline fails npm publish with 403 Forbidden using internal Gitlab Instance with one central Package Registry.
Groups and Projects setup as instructed Manage packages with dedicated, type-...
1
vote
3
answers
190
views
How to mask SSH private key on GitLab CI?
I want to connect via SSH to a server in a GitLab CI pipeline job.
I have this in my pipeline:
reset_database:
stage: .pre
image: kroniak/ssh-client:latest
resource_group: portal_test_vm_lock
...
Best practices
0
votes
5
replies
49
views
Failed to merge latest branches from upstream repo to my local repo
I made a local buildroot repository in my gitlab about 1 year ago.
I don't remember what I did at that time but I think I followed steps to import from URL.
Since my repo does not have new updated ...
1
vote
0
answers
84
views
SSL handshake error for Node.js on GitLab CI pipeline
I am trying to set up a CI pipeline in GitLab, for a Spring Boot project with Maven, which also installs npm.
I have tried using docker exec locally to check if doing mvn install would work, and it is ...
1
vote
0
answers
52
views
How to review only latest changes to a merge request?
My job requires reviewing changes that engineers make to GitLab merge requests. When they make changes to a merge request that I've already reviewed, I need to review the additional changes. My ...
0
votes
0
answers
59
views
MlflowClient.list_artifacts() fails with ValueError when using GitLab MLflow tracking (mlflow==3.10.0)
I’m using GitLab’s MLflow experiment tracking integration as my tracking server and mlflow==3.10.0.
I can successfully log (push) artifacts to a run, but when I try to list them using MlflowClient....
1
vote
1
answer
126
views
Read list of packages in GitLab repository
I can push a package with the following:
curl --location --header "DEPLOY-TOKEN: xxxx" --upload-file TestFile_1.0.0.0.pkg "https://xxxx/api/v4/projects/1234/packages/generic/TestFile/1....