mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
In podman info we print the os variant so use that to label the issue with 'machine'. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
17 lines
525 B
YAML
17 lines
525 B
YAML
# 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'
|
|
|
|
machine:
|
|
# machine-os uses its own variant so use that to label issues with machine based on podman info
|
|
- 'variant:\spodman-machine-os'
|