Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add issue template and workflow for adding new issues to team boards #263

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. kube apply '...'
2. curl '....'
3. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Additional context**
Add any other context about the problem here, e.g.
- Gloo version
- Istio version
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Docs
about: Describe this issue template's purpose here.
title: ''
labels: documentation
assignees: ''

---

**Describe the requested changes**
List the desired changes to be made to the wasm docs.

**Link to any relevant existing docs**
1. https://docs.solo.io/web-assembly-hub/latest/...
2. ...

**Browser Information**
If the change isn't related to content, please include your browser version and any other relevant information
(e.g., browser zoom) to help us reproduce docs-related bugs.

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
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.
23 changes: 23 additions & 0 deletions .github/workflows/issue_board.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: issue_board

on:
issues:
types:
- opened
- labeled
jobs:
add-to-project:
name: Add Rate Limit issue to Gloo Edge project board
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/solo-io/projects/22
github-token: ${{ secrets.ORG_CROSS_REPO }}
labeled: enhancement, bug
label-operator: OR
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/solo-io/projects/24
github-token: ${{ secrets.ORG_CROSS_REPO }}
labeled: documentation
5 changes: 5 additions & 0 deletions changelog/v0.5.20/issue-automation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
changelog:
- type: NON_USER_FACING
description: Add issue template (so all issues get labels) and automation to add issues to team boards.
issueLink: https://github.com/solo-io/gloo/issues/6305
resolvesIssue: false