From 75b60e55460dd0088d28f6a1d09ed6f740fcd93a Mon Sep 17 00:00:00 2001 From: Ralf Grubenmann Date: Fri, 17 Feb 2023 09:10:18 +0100 Subject: [PATCH] chore: update issue templates and action for user issue triage (#166) --- .github/ISSUE_TEMPLATE/bug_report.md | 36 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 11 +++++++ .github/ISSUE_TEMPLATE/feature_request.md | 20 +++++++++++++ .github/workflows/github-project.yml | 15 ++++++++++ 4 files changed, 82 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/workflows/github-project.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..efbf61f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,36 @@ +--- +name: "\U0001F41E Bug report" +about: Create a report to help us improve +title: '' +labels: kind/bug, status/triage +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**Link to project** +If possible, provide a public renkulab link to the project with the bug. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots and/or execution output** +If applicable, add screenshots and/or execution output to help explain your problem. + +**Run environment (please complete the following information):** + - local terminal OR renkulab browser? + - specify RStudio / Jupyterlab / Other + - renku-python version + - browser [e.g. chrome, safari] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..66beb21 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,11 @@ +# Ref: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository#configuring-the-template-chooser +blank_issues_enabled: false +contact_links: +- name: '💬 Discussions' + url: https://renku.discourse.group/ + about: | + Ask questions about using Renku, its features and roadmap, or get support and give feedback. +- name: '💬 Gitter' + url: https://gitter.im/SwissDataScienceCenter/renku + about: | + Chat with the community and maintainers about both the usage of and development of the project. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..6c0ed00 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: "\U0001F381 Feature request" +about: Suggest an idea for this project +title: '' +labels: kind/enhancement, status/triage +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/github-project.yml b/.github/workflows/github-project.yml new file mode 100644 index 0000000..8299090 --- /dev/null +++ b/.github/workflows/github-project.yml @@ -0,0 +1,15 @@ +name: Add Issues to triage +on: + issues: + types: + - opened +jobs: + add_to_project: + runs-on: ubuntu-latest + steps: + - name: Add to triage board + uses: actions/add-to-project@main + with: + project-url: https://github.com/orgs/SwissDataScienceCenter/projects/51 + github-token: ${{ secrets.RENKUBOT_GITHUB_TOKEN }} + labeled: status/triage