-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update issue templates and action for user issue triage (#166)
- Loading branch information
Showing
4 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |