Currently the history of the executions is limited to 10. with any PR trigger or push trigger. it lists in the same 10 executions. push trigger are used to publish artifacts and depending in sequence id. having PR triggers in the same lists mess up the numbers of the artifacts. for instance a push trigger created an execution of number 1 and publish artifacts names 1.0.<+sequenceId> which is 1.0.1.
a second run of type PR trigger will execute that will take sequence ID of 2. that will not publish. a third push trigger executes with sequence ID 3 and artifacts 1.0.3.
now our artifacts are 1.0.1 and 1.0.3. because we have PR trigger analysis runs in the same list as build/publish trigger.