From 67444b87e074de829b8281eeff17889d4951b8e9 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Mon, 18 Oct 2021 23:03:00 +0200 Subject: [PATCH] Adding label commenter configuration. [skip ci] --- .github/label-commenter-config.yml | 59 +++++++++++++++++++++++++++ .github/workflows/label-commenter.yml | 18 ++++++++ 2 files changed, 77 insertions(+) create mode 100644 .github/label-commenter-config.yml create mode 100644 .github/workflows/label-commenter.yml diff --git a/.github/label-commenter-config.yml b/.github/label-commenter-config.yml new file mode 100644 index 0000000000000..20861ff091fd2 --- /dev/null +++ b/.github/label-commenter-config.yml @@ -0,0 +1,59 @@ +# Configuration for Label Commenter - https://github.com/peaceiris/actions-label-commenter +labels: + - name: needs-triaging + labeled: + issue: + body: | + @{{ issue.user.login }}, thank you for creating this issue. We will troubleshoot it as soon as we can. + + --- +
+ Info for maintainers +
+
+

+ Triage this issue by using labels. +

+

+ If information is missing, add a helpful comment and add the I-issue-template label. +

+

+ If the issue is a question, add the I-question label. +

+

+ If the issue is valid but there is no time to troubleshoot it, consider adding the help wanted label. +

+

+ After troubleshooting the issuee, please add the R-awaiting answer label. +

+

+ Thank you! +

+
+
+ - name: I-issue-template + labeled: + issue: + body: | + Hi, @{{ issue.user.login }}. + Please follow the issue template, we need more information to reproduce the issue. + + Either a complete code snippet (if more than one file is needed, provide a GitHub repo and instructions to run the code), the specific versions used, or a more detailed description to help us understand the issue. + + Reply to this issuee when all information is provided, thank you. + - name: I-question + labeled: + issue: + body: | + 💬 Please ask questions at: + * 📫 The [Selenium user group](https://groups.google.com/forum/#!forum/selenium-users) + * 📮 [StackOverflow](https://stackoverflow.com/questions/tagged/selenium) + * 🗣 Our [IRC/Slack/Matrix channels](https://www.selenium.dev/support/) where the community can help you as well + action: close + - name: help wanted + labeled: + issue: + body: | + This issue is looking for contributors. + + Please comment below or reach out to us through our [IRC/Slack/Matrix channels](https://www.selenium.dev/support/) if you are interested. diff --git a/.github/workflows/label-commenter.yml b/.github/workflows/label-commenter.yml new file mode 100644 index 0000000000000..5c70947521db4 --- /dev/null +++ b/.github/workflows/label-commenter.yml @@ -0,0 +1,18 @@ +# Configuration for Label Commenter - https://github.com/peaceiris/actions-label-commenter +name: Label Commenter + +on: + issues: + types: [ labeled ] + +permissions: + contents: read + issues: write + +jobs: + comment: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Label Commenter + uses: peaceiris/actions-label-commenter@v1