Skip to content

Commit

Permalink
workflows/triage: fix regex for no ARM bottle
Browse files Browse the repository at this point in the history
In #147591 I didn't take `all` bottles into account; the updated regex
miscategorised e.g. #148156. This fixes that.
  • Loading branch information
ZhongRuoyu committed Oct 1, 2023
1 parent 22ddf65 commit 8a27f05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- label: no ARM bottle
path: Formula/.+
content: '\n sha256.* (?!.*(?:arm64_|_linux)).+: +"[a-fA-F0-9]+"\n'
missing_content: '\n sha256.* arm64_.+: +"[a-fA-F0-9]+"\n'
missing_content: '\n sha256.* (arm64_.+|all): +"[a-fA-F0-9]+"\n'
- label: no Linux bottle
path: Formula/.+
Expand Down

0 comments on commit 8a27f05

Please sign in to comment.