summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/issue-labeler.yml13
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/issue-labeler.yml b/.github/issue-labeler.yml
index fb8ca2a32..e285749a9 100644
--- a/.github/issue-labeler.yml
+++ b/.github/issue-labeler.yml
@@ -1,10 +1,13 @@
# List of labels which should be assigned to issues based on a regex
windows:
- - 'Os\/Arch:\s*windows'
-
+ # info prints OsArch: ...
+ # version prints OS/Arch: ...
+ - 'O[Ss]\/?Arch:\s*windows'
macos:
- - 'Os\/Arch:\s*darwin'
+ # info prints OsArch: ...
+ # version prints OS/Arch: ...
+ - 'O[Ss]\/?Arch:\s*darwin'
remote:
- # podman-remote version prints Client:\nVersion:...
- - 'Client:\sVersion:'
+ # we cannot use multiline regex so we check for serviceIsRemote in podman info
+ - 'serviceIsRemote:\strue'