Jobs used in multiple workflows get a number suffix

Hi,

It’s actually the other way around: having multiple workflows with the same job (but only once per workflow), like this:

jobs:
  my_job:
    steps:
      - first_step:
      ...

workflows:
  first_workflow:
    steps:
      - my_job
     ...

  second_workflow:
    steps:
      - my_job
      ...