Skip to content

Commit

Permalink
triage: fix extract_plist livecheck label
Browse files Browse the repository at this point in the history
This label was never being applied because the regex only matched `strategy :extract_plist` when indented by 2 spaces, this is always at least 4 spaces because it is nested inside of a `livecheck do` block. The newline check shouldn't be necessary regardless, and removing it causes this to also match in the case that the `livecheck` is nested within another block, ie. `on_arm do`.
  • Loading branch information
bevanjkay authored Oct 22, 2024
1 parent f44f7ea commit eb1d288
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 @@ -72,7 +72,7 @@ jobs:
- label: extract_plist livecheck
path: Casks/.+
content: \n strategy :extract_plist.*\n
content: strategy :extract_plist
- label: missing zap
path: Casks/.+
Expand Down

0 comments on commit eb1d288

Please sign in to comment.