diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-01-27 17:26:14 +0100 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-01-27 17:51:35 +0100 |
commit | 525bdc37718b4d1a48910f7e6b9acf1005078fac (patch) | |
tree | 0ea783aa663247199c483a0459482e4925e3710e /.github/workflows | |
parent | 5659b0734c628f3f42fd976b6ce91372be3019ae (diff) | |
download | podman-525bdc37718b4d1a48910f7e6b9acf1005078fac.tar.gz podman-525bdc37718b4d1a48910f7e6b9acf1005078fac.tar.bz2 podman-525bdc37718b4d1a48910f7e6b9acf1005078fac.zip |
github: label issues based on os
We get a lot of issues for podman-remote on macos. Since the fact that
this is a remote client is often overlooked by us lets add windows, macos
and remote label automatically based on a regex which should match the
output of podman version.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/issue-labeler.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/issue-labeler.yml b/.github/workflows/issue-labeler.yml new file mode 100644 index 000000000..ee9785d23 --- /dev/null +++ b/.github/workflows/issue-labeler.yml @@ -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 |