diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-28 03:16:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 03:16:04 -0500 |
commit | 935ae1bfd0bad813ff6d1ba99552b90691d12b6d (patch) | |
tree | 9595fdf4a29c18fc2e6df69117ce1e788e72b2fe | |
parent | fae7648ba19fc73cc11c38af4267d85b1d52435d (diff) | |
parent | a928d39d0c4b72109c81f5bf8e292c4fafdd8fee (diff) | |
download | podman-935ae1bfd0bad813ff6d1ba99552b90691d12b6d.tar.gz podman-935ae1bfd0bad813ff6d1ba99552b90691d12b6d.tar.bz2 podman-935ae1bfd0bad813ff6d1ba99552b90691d12b6d.zip |
Merge pull request #13052 from Luap99/issues2
[CI:DOCS] github: label issues based on os fix regex
-rw-r--r-- | .github/issue-labeler.yml | 13 |
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' |