blob: e285749a96418a7b5af1945143689767ac9a30d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# List of labels which should be assigned to issues based on a regex
windows:
# info prints OsArch: ...
# version prints OS/Arch: ...
- 'O[Ss]\/?Arch:\s*windows'
macos:
# info prints OsArch: ...
# version prints OS/Arch: ...
- 'O[Ss]\/?Arch:\s*darwin'
remote:
# we cannot use multiline regex so we check for serviceIsRemote in podman info
- 'serviceIsRemote:\strue'
|