Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with https://github.com/checkmarx-ltd/cx-flow/wiki/Tutorials#cicd-variablesBug Tracker Type "GitLabDashboard" #1326

Open
KafkaProServerless opened this issue Mar 1, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@KafkaProServerless
Copy link

Hello team,

Following your document:
https://github.com/checkmarx-ltd/cx-flow/wiki/Tutorials#cicd-variables

It seems it is possible to use a bug tracker type "GitLabDashboard"
And there are many places which mention "GitLabDasboard"

    - if: '$CX_FLOW_BUG_TRACKER == "GitLabDashboard" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'

However, in the code, we can see only those:

public class BugTracker {
    private Type type;

public enum Type {
        JIRA("JIRA"),
        BITBUCKETCOMMIT("BITBUCKETCOMMIT"),
        BITBUCKETPULL("BITBUCKETPULL"),
        BITBUCKETSERVERPULL("BITBUCKETSERVERPULL"),
        bitbucketserverpull("bitbucketserverpull"),
        ADOPULL("ADOPULL"),
        adopull("adopull"),
        GITHUBPULL("GITHUBPULL"),
        githubpull("githubpull"),
        GITHUBCOMMIT("GITHUBCOMMIT"),
        GITLABCOMMIT("GITLABCOMMIT"),
        GITLABMERGE("GITLABMERGE"),
        gitlabmerge("gitlabmerge"),
        EMAIL("EMAIL"),
        CUSTOM("CUSTOM"),
        NONE("NONE"),
        WAIT("WAIT"),
        wait("wait");

        private String type;

        Type(String type) {
            this.type = type;
        }

        public String getType() {
            return type;
        }
    }

There is no "GitLabDashboard"

Is that expected?

Can we change the Type, or remove this from the doc?

Also, could you please add more concrete documentation for :
https://github.com/checkmarx-ltd/cx-flow/wiki/Tutorials#security-dashboard

It is only three lines, while "merge request" for instance, has more descriptions, screenshots, etc

Thank you

@KafkaProServerless KafkaProServerless added the bug Something isn't working label Mar 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant