Merge pull request #13050 from Luap99/issues
[CI:DOCS] github: label issues based on os
This commit is contained in:
commit
fae7648ba1
|
@ -0,0 +1,10 @@
|
|||
# List of labels which should be assigned to issues based on a regex
|
||||
windows:
|
||||
- 'Os\/Arch:\s*windows'
|
||||
|
||||
macos:
|
||||
- 'Os\/Arch:\s*darwin'
|
||||
|
||||
remote:
|
||||
# podman-remote version prints Client:\nVersion:...
|
||||
- 'Client:\sVersion:'
|
|
@ -0,0 +1,15 @@
|
|||
name: "Issue Labeler"
|
||||
on:
|
||||
issues:
|
||||
types: [opened, edited]
|
||||
|
||||
jobs:
|
||||
triage:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: github/issue-labeler@v2.0
|
||||
with:
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
configuration-path: .github/issue-labeler.yml
|
||||
not-before: 2022-01-27T00:00:00Z
|
||||
enable-versioned-regex: 0
|
Loading…
Reference in New Issue