Zernit/.github/label-pr.yml

46 lines
716 B
YAML
Raw Normal View History

2020-02-05 13:15:02 +01:00
# Programming language specific
2020-02-10 17:35:31 +01:00
- regExp: '.*\.rs'
2020-02-05 13:15:02 +01:00
labels: ["rustlang"]
2020-02-10 17:35:31 +01:00
- regExp: '.*\\.py'
2020-02-05 13:15:02 +01:00
labels: ["python"]
2020-02-10 17:35:31 +01:00
- regExp: '.*\.c'
2020-02-05 13:15:02 +01:00
labels: ["c-lang"]
2020-02-10 17:35:31 +01:00
- regExp: '.*\.cpp'
2020-02-05 13:15:02 +01:00
labels: ["CPP"]
2020-02-10 17:35:31 +01:00
- regExp: '.*\.sh'
2020-02-05 13:15:02 +01:00
labels: ["shell"]
2020-02-10 17:35:31 +01:00
- regExp: '.*\.bash'
2020-02-05 13:15:02 +01:00
labels: ["bash"]
2020-02-10 17:35:31 +01:00
- regExp: '.*\.br'
2020-02-05 13:15:02 +01:00
labels: ["brainfuck"]
2020-02-10 17:35:31 +01:00
- regExp: '.*\.jar'
2020-02-07 14:20:50 +01:00
labels: ["java"]
2020-02-05 13:15:02 +01:00
2020-02-10 17:35:31 +01:00
- regExp: '.*\.v'
2020-02-07 14:20:50 +01:00
labels: ["vlang"]
2020-02-10 17:35:31 +01:00
- regExp: '.*\.cs'
2020-02-07 14:20:50 +01:00
labels: ["csharp"]
2020-02-10 17:35:31 +01:00
- regExp: '^/tests/.*'
2020-02-07 14:20:50 +01:00
labels: ["tests"]
2020-02-10 17:35:31 +01:00
- regExp: '^/benches/.*'
2020-02-07 14:20:50 +01:00
labels: ["benches"]
2020-02-10 17:35:31 +01:00
- regExp: '^LICENSE\.md'
2020-02-07 14:20:50 +01:00
labels: ["license"]
2020-02-10 17:35:31 +01:00
- regExp: '^(Cargo\.toml|requirements\.txt)'
2020-02-07 14:20:50 +01:00
labels: ["dependencies"]
# Repository specific
2020-02-10 17:35:31 +01:00
- regExp: '^/docs/.*'
2020-02-07 14:20:50 +01:00
labels: ["docs"]