podman/.github/issue-labeler.yml
Paul Holzinger a928d39d0c github: label issues based on os fix regex
Good news the github action works, however I noticed that we cannot use
a multiline regex so we have to use serviceIsRemote to detect if this is
a remote client. Also change the os regex so that it matches both the
output of podman version and podman info.

Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
2022-01-27 21:24:34 +01:00

14 lines
383 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'