diff --git a/.github/label-pr.yml b/.github/label-pr.yml index 81a2c40..4f2f116 100644 --- a/.github/label-pr.yml +++ b/.github/label-pr.yml @@ -1,32 +1,32 @@ # Programming language specific -- regExp: '.*\.rs' +- regExp: '.*\.rs$' labels: ["rustlang"] -- regExp: '.*\\.py' +- regExp: '.*\.py$' labels: ["python"] -- regExp: '.*\.c' +- regExp: '.*\.c$' labels: ["c-lang"] -- regExp: '.*\.cpp' +- regExp: '.*\.cpp$' labels: ["CPP"] -- regExp: '.*\.sh' +- regExp: '.*\.sh$' labels: ["shell"] -- regExp: '.*\.bash' +- regExp: '.*\.bash$' labels: ["bash"] -- regExp: '.*\.br' +- regExp: '.*\.br$' labels: ["brainfuck"] -- regExp: '.*\.jar' +- regExp: '.*\.jar$' labels: ["java"] -- regExp: '.*\.v' +- regExp: '.*\.v$' labels: ["vlang"] -- regExp: '.*\.cs' +- regExp: '.*\.cs$' labels: ["csharp"] - regExp: '^/tests/.*' @@ -35,13 +35,13 @@ - regExp: '^/benches/.*' labels: ["benches"] -- regExp: '^LICENSE\.md' +- regExp: '.*LICENSE\.md$' labels: ["license"] -- regExp: '.*\.md' +- regExp: '.*\.md$' labels: ["markdown"] -- regExp: '^(Cargo\.toml|requirements\.txt)' +- regExp: '(.*Cargo\.toml$|.*requirements\.txt$)' labels: ["dependencies"] # Repository specific diff --git a/.github/labels.yml b/.github/labels.yml index 244dc81..89363d4 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -1,5 +1,31 @@ # This file handles labels on GitHub +# Priority handling +- name: P - SHTF + color: ae00ff + description: "Stop whatever you are doing and focus on this" + +- name: P - Very High + color: ff2f00 + description: "FIXME" + +- name: P - High + color: 910f00 + description: "FIXME" + +- name: P - Med + color: ffd000 + description: "FIXME" + +- name: P - Low + color: b3ff00 + description: "FIXME" + +- name: P - Very Low + color: 73ff00 + description: "FIXME" + +# MISC - name: bug color: d73a4a description: "Something isn't working" @@ -36,31 +62,6 @@ color: cc1250 description: "Relevant to benchmarks" -# Priority handling -- name: P - SHTF - color: ae00ff - description: "Stop whatever you are doing and focus on this" - -- name: P - Very High - color: ff2f00 - description: "FIXME" - -- name: P - High - color: 910f00 - description: "FIXME" - -- name: P - Med - color: ffd000 - description: "FIXME" - -- name: P - Low - color: b3ff00 - description: "FIXME" - -- name: P - Very Low - color: 73ff00 - description: "FIXME" - # Programming language specific - name: python color: 00aeff