Merge pull request #13052 from Luap99/issues2

[CI:DOCS] github: label issues based on os fix regex
This commit is contained in:
OpenShift Merge Robot 2022-01-28 03:16:04 -05:00 committed by GitHub
commit 935ae1bfd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,13 @@
# List of labels which should be assigned to issues based on a regex # List of labels which should be assigned to issues based on a regex
windows: windows:
- 'Os\/Arch:\s*windows' # info prints OsArch: ...
# version prints OS/Arch: ...
- 'O[Ss]\/?Arch:\s*windows'
macos: macos:
- 'Os\/Arch:\s*darwin' # info prints OsArch: ...
# version prints OS/Arch: ...
- 'O[Ss]\/?Arch:\s*darwin'
remote: remote:
# podman-remote version prints Client:\nVersion:... # we cannot use multiline regex so we check for serviceIsRemote in podman info
- 'Client:\sVersion:' - 'serviceIsRemote:\strue'