spiegel_podman/.github/issue-labeler.yml
Paul Holzinger 5cdc6f80c0 label machine issues automatically
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>
2026-06-30 15:12:08 +02:00

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'