Skip to content

Commit

Permalink
Merge #2332
Browse files Browse the repository at this point in the history
2332: bors-stats.sh: Change ignore pattern "try" to "try\nBuild" r=Anviking a=Anviking

# Issue Number

<!-- Put here a reference to the issue this PR relates to and which requirements it tackles -->


# Overview

<!-- Detail in a few bullet points the work accomplished in this PR -->

- [x] Change ignore pattern "try" to "try\nBuild". Comments [containing the phrase "retry" anywhere](#2329 (comment)) are no longer incorrectly filtered out.


# Comments
Now:
<img width="909" alt="Skärmavbild 2020-11-18 kl  20 48 56" src="https://user-images.githubusercontent.com/304423/99580248-8b830f00-29df-11eb-8a60-c57d14561e24.png">

On master:
<img width="861" alt="Skärmavbild 2020-11-18 kl  20 49 13" src="https://user-images.githubusercontent.com/304423/99580257-8d4cd280-29df-11eb-9f09-093f75a4c244.png">


<!-- Additional comments or screenshots to attach if any -->

<!-- 
Don't forget to:

 ✓ Self-review your changes to make sure nothing unexpected slipped through
 ✓ Assign yourself to the PR
 ✓ Assign one or several reviewer(s)
 ✓ Once created, link this PR to its corresponding ticket
 ✓ Assign the PR to a corresponding milestone
 ✓ Acknowledge any changes required to the Wiki
-->


Co-authored-by: Johannes Lund <johannes.lund@iohk.io>
  • Loading branch information
iohk-bors[bot] and Anviking committed Nov 19, 2020
2 parents b3d504e + 0c41951 commit eabbddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bors-stats.sh
Expand Up @@ -48,7 +48,7 @@ DATA=$(echo $QUERY \
| sort_by (.createdAt)
| map (
select(.author.login == "iohk-bors")
| select(.bodyText | contains("try") | not)
| select(.bodyText | contains("try\nBuild") | not)
| select(.bodyText | contains("Canceled") | not)
| select(.bodyText | contains("Merge conflict") | not)
| select(.bodyText | contains("Rejected by too few approved reviews") | not)
Expand Down

0 comments on commit eabbddb

Please sign in to comment.