On circleci job I get a trailing -2 on the job name even though I dont have 2 workflows running on the same commit

Hello,
I have a workflow that is running on a condition like this.

 or:
        - <<pipeline.parameters.run-schedule>>
        - or: 
            - matches: { pattern: '/^\d+\.\d+\.\d$/', value: << pipeline.git.tag >> }
            - equal: [master, << pipeline.git.branch >>]

When it runs I get a trailing -2 on a job name that hinders me from getting the correct name of the job. If I were to 2 workflows running on the same commit that would have been default behavior, but in this case it is not. I dont have any other jobs with an identical name in the workflow either.
Do you have any insight on this issue ?
Thank you