Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #113

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: tweaks to auto labeler
I noticed the auto labeler failed to mark a bugfix based on "fix: xxxx" tweak the
regex so it matches, generally be more relaxed, and set rules that won't break
in the faaaaar future :D goodprogrammingamsure
  • Loading branch information
casswedson committed Nov 13, 2023
commit 14cc51e910a89f53fb0f00f6aa0cdc1b53a8f5d4
20 changes: 10 additions & 10 deletions .github/summary-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,40 +3,40 @@ version: v1
labels:
- label: "<Enhancement / Feature>"
matcher:
body: "(\\s|^)#### Summary\\s*Features +\".+\"\\s*(\n|$)"
body: ".*Features +\".+\".*"

- label: "Info / User Interface"
matcher:
body: "(\\s|^)#### Summary\\s*Interface +\".+\"\\s*(\n|$)"
body: ".*Interface +\".+\".*"

- label: "Mods"
matcher:
body: "(\\s|^)#### Summary\\s*Mods +\".+\"\\s*(\n|$)"
body: ".*Mods +\".+\".*"

- label: "Game: Balance"
matcher:
body: "(\\s|^)#### Summary\\s*Balance +\".+\"\\s*(\n|$)"
body: ".*Balance +\".+\".*"

- label: "<Bugfix>"
matcher:
body: "(\\s|^)#### Summary\\s*Bugfixes +\".+\"\\s*(\n|$)"
body: ".*Bugfixes +\".+\".*"

- label: "<Bugfix>"
matcher:
body: ".*((C|c)lose(s|d)?|(F|f)ix(es|ed)?|(R|r)esolve(s|d)?):? #([1-9][0-9]{3,6})(\\s*|$)"
body: ".*([Cc]lose[sd]?|[Ff]ix(es|ed)?|[Rr]esolve[sd]?):?.+#[0-9]+.*"

- label: "Code: Performance"
matcher:
body: "(\\s|^)#### Summary\\s*Performance +\".+\"\\s*(\n|$)"
body: ".*Performance +\".+\".*"

- label: "Code: Infrastructure / Style / Static Analysis"
matcher:
body: "(\\s|^)#### Summary\\s*Infrastructure +\".+\"\\s*(\n|$)"
body: ".*Infrastructure +\".+\".*"

- label: "Code: Build"
matcher:
body: "(\\s|^)#### Summary\\s*Build +\".+\"\\s*(\n|$)"
body: ".*Build +\".+\".*"

- label: "Translation"
matcher:
body: "(\\s|^)#### Summary\\s*I18N +\".+\"\\s*(\n|$)"
body: ".*I18N +\".+\".*"