gitlab-ci-pipelines-exporter
gitlab-ci-pipelines-exporter copied to clipboard
Query: Missing ci jobs/pipeline,Only Main & Master branches data fetch
Query- Gitlab is fetching only main & master branch data, we want to fetch data of all the sub-braches.
log:
level: debug
format: text
gitlab:
url: XXX
token: XXX
project_defaults:
pull:
pipeline:
jobs:
enabled: true
projects:
-
name: XXX_ refs:
branches:
enabled: true regexp: ".*" most_recent: 0 max_age_seconds: 0 exclude_deleted: true
tags:
enabled: true regexp: ".*" most_recent: 0 max_age_seconds: 0 exclude_deleted: true
Dear all,
Pls support to sort this issue if anyone knows how to resolve
- 1
I am also stuck at this
default search for branches is "^main|master$"
this configuration should work:
projects:
- name: whatever
pull:
refs:
branches:
enabled: true
regexp: ".*"
tags:
enabled: true
regexp: ".*"