Our generated builds are numbered with the pipeline number (for internal reasons we use that instead of job number) so it will be nice if we can have an easy way to access to that view by using only the pipeline number (i.e. https://app.circleci.com/pipelines/{pipeline_number}).
Currently the only way to access the view using only the number is by using the CircleCI API:
  1. Get pipeline object based on the pipeline number and take the ID
  2. Get the pipeline's workflows objects based on the ID taken from step 1 and take the workflow ID
  3. Go to https://app.circleci.com/pipelines/workflows/{workflow_id}
Is either that or scroll enough until you find the pipeline you are looking for.
Thanks in advance.