From 991f69024aacd38338357dccf49ec5fc68bd79ea Mon Sep 17 00:00:00 2001 From: Max Cao Date: Thu, 24 Nov 2022 18:18:51 -0500 Subject: [PATCH 01/11] init commit --- .github/pull_request_template.md | 14 ++++++++ .../ISSUE_TEMPLATE/feature_request.md | 16 ++++++++++ .../workflows/ISSUE_TEMPLATE/issue_report.md | 32 +++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/workflows/ISSUE_TEMPLATE/issue_report.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000..f7836e019 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,14 @@ + +Fixes: # + +#### Description of the change: + +#### Motivation for the change: + +#### How to manually test: diff --git a/.github/workflows/ISSUE_TEMPLATE/feature_request.md b/.github/workflows/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..a9b336996 --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,16 @@ +--- +name: ✨ Feature request +about: Improve an existing feature or add a new one +title: '[Request] ' +labels: feat, needs triage +assignees: '' + +--- + +#### Describe the feature +A clear and concise description of what the feature is. + +#### Timeline +Is there a timeline for this feature? If so, when do you expect to have it implemented? + +#### Any other information? \ No newline at end of file diff --git a/.github/workflows/ISSUE_TEMPLATE/issue_report.md b/.github/workflows/ISSUE_TEMPLATE/issue_report.md new file mode 100644 index 000000000..2a0a0d164 --- /dev/null +++ b/.github/workflows/ISSUE_TEMPLATE/issue_report.md @@ -0,0 +1,32 @@ +--- +name: 🐞 Bug +about: File a bug/issue +title: '[Bug] <title>' +labels: bug, needs triage +assignees: '' + +--- + +<!-- +Note: Please search to see if an issue already exists for the bug you encountered. +--> + +#### Current Behavior: +A concise description of what you're experiencing. + +#### Expected Behavior: +A concise description of what you expected to happen. + +#### Steps To Reproduce: +1. In this environment... +2. With this config... +3. Run '...' +4. See error... + +#### Environment: +- OS: [e.g. Ubuntu 20.04] +- Environment: [e.g. OpenShift 4.7] +- Version [e.g. 2.2.0] + +#### Anything else: +Links? References? Anything that will give us more context about the issue that you are encountering! From 51c942dd4a352ac57611644de008fe9b6de86a8f Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Thu, 24 Nov 2022 19:12:49 -0500 Subject: [PATCH 02/11] fix --- .../issue_report.md => ISSUE_TEMPLATE/bug_report.md} | 7 +++++-- .github/{workflows => }/ISSUE_TEMPLATE/feature_request.md | 0 .../pull_request_template.md | 0 3 files changed, 5 insertions(+), 2 deletions(-) rename .github/{workflows/ISSUE_TEMPLATE/issue_report.md => ISSUE_TEMPLATE/bug_report.md} (81%) rename .github/{workflows => }/ISSUE_TEMPLATE/feature_request.md (100%) rename .github/{ => PULL_REQUEST_TEMPLATE.md}/pull_request_template.md (100%) diff --git a/.github/workflows/ISSUE_TEMPLATE/issue_report.md b/.github/ISSUE_TEMPLATE/bug_report.md similarity index 81% rename from .github/workflows/ISSUE_TEMPLATE/issue_report.md rename to .github/ISSUE_TEMPLATE/bug_report.md index 2a0a0d164..1fde3c8ce 100644 --- a/.github/workflows/ISSUE_TEMPLATE/issue_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,6 @@ --- -name: 🐞 Bug -about: File a bug/issue +name: 🐞 Bug report +about: Create a report to help us improve Cryostat title: '[Bug] <title>' labels: bug, needs triage assignees: '' @@ -17,6 +17,9 @@ A concise description of what you're experiencing. #### Expected Behavior: A concise description of what you expected to happen. +#### Screenshots +If applicable, add screenshots to help explain your problem. + #### Steps To Reproduce: 1. In this environment... 2. With this config... diff --git a/.github/workflows/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md similarity index 100% rename from .github/workflows/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE.md/pull_request_template.md similarity index 100% rename from .github/pull_request_template.md rename to .github/PULL_REQUEST_TEMPLATE.md/pull_request_template.md From 26d29de8e8380f29fdc8ffd741f357dd1b83cec7 Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Thu, 24 Nov 2022 19:15:05 -0500 Subject: [PATCH 03/11] fix folder typo and increase heading size --- .github/ISSUE_TEMPLATE/bug_report.md | 12 ++++++------ .github/ISSUE_TEMPLATE/feature_request.md | 6 +++--- .../pull_request_template.md | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) rename .github/{PULL_REQUEST_TEMPLATE.md => PULL_REQUEST_TEMPLATE}/pull_request_template.md (82%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 1fde3c8ce..d801853f6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,25 +11,25 @@ assignees: '' Note: Please search to see if an issue already exists for the bug you encountered. --> -#### Current Behavior: +### Current Behavior: A concise description of what you're experiencing. -#### Expected Behavior: +### Expected Behavior: A concise description of what you expected to happen. -#### Screenshots +### Screenshots If applicable, add screenshots to help explain your problem. -#### Steps To Reproduce: +### Steps To Reproduce: 1. In this environment... 2. With this config... 3. Run '...' 4. See error... -#### Environment: +### Environment: - OS: [e.g. Ubuntu 20.04] - Environment: [e.g. OpenShift 4.7] - Version [e.g. 2.2.0] -#### Anything else: +### Anything else: Links? References? Anything that will give us more context about the issue that you are encountering! diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index a9b336996..fe89cb208 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -7,10 +7,10 @@ assignees: '' --- -#### Describe the feature +### Describe the feature A clear and concise description of what the feature is. -#### Timeline +### Timeline Is there a timeline for this feature? If so, when do you expect to have it implemented? -#### Any other information? \ No newline at end of file +### Any other information? \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md/pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md similarity index 82% rename from .github/PULL_REQUEST_TEMPLATE.md/pull_request_template.md rename to .github/PULL_REQUEST_TEMPLATE/pull_request_template.md index f7836e019..0056c4e25 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md/pull_request_template.md +++ b/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md @@ -7,8 +7,8 @@ Welcome to Cryostat! Before contributing, make sure to: --> Fixes: #<issue number> -#### Description of the change: +### Description of the change: -#### Motivation for the change: +### Motivation for the change: -#### How to manually test: +### How to manually test: From aaeb2722e3d7a3a9fb764844e681db9c86bd33f5 Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Thu, 24 Nov 2022 19:30:31 -0500 Subject: [PATCH 04/11] fixed issues --- .../{PULL_REQUEST_TEMPLATE => }/pull_request_template.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) rename .github/{PULL_REQUEST_TEMPLATE => }/pull_request_template.md (83%) diff --git a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md b/.github/pull_request_template.md similarity index 83% rename from .github/PULL_REQUEST_TEMPLATE/pull_request_template.md rename to .github/pull_request_template.md index 0056c4e25..e1e0275bd 100644 --- a/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,10 +1,11 @@ -<!-- Welcome to Cryostat! Before contributing, make sure to: - Read the contributing guidelines https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md - Rebase your branch on the latest upstream main - Link any relevant issues, PR's, or documentation -- Make sure at least one of the following labels is attached to the PR: [chore,ci,cleanup,docs,feat,fix,perf,refactor,style,test] ---> +- Make sure at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] + +_______________________________________________ + Fixes: #<issue number> ### Description of the change: From 011539e4445ee57f8119d9efb9fef7f26d74c0f8 Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Thu, 24 Nov 2022 20:05:19 -0500 Subject: [PATCH 05/11] fixed issues --- .github/pull_request_template.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index e1e0275bd..5382d3906 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,3 +1,10 @@ +--- +title: '[Bug] <title>' +labels: bug, needs triage +assignees: '' + +--- + Welcome to Cryostat! Before contributing, make sure to: - Read the contributing guidelines https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md - Rebase your branch on the latest upstream main From ebf68e0cb0a1ac040296989f685f3f29e7edf6e5 Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Tue, 29 Nov 2022 13:43:59 -0500 Subject: [PATCH 06/11] added checkboxes with things to do --- .github/ISSUE_TEMPLATE/bug_report.md | 4 ---- .github/ISSUE_TEMPLATE/feature_request.md | 3 --- .github/pull_request_template.md | 18 +++++++++++++----- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index d801853f6..57b4ab72d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,10 +7,6 @@ assignees: '' --- -<!-- -Note: Please search to see if an issue already exists for the bug you encountered. ---> - ### Current Behavior: A concise description of what you're experiencing. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index fe89cb208..2bcdb266c 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -10,7 +10,4 @@ assignees: '' ### Describe the feature A clear and concise description of what the feature is. -### Timeline -Is there a timeline for this feature? If so, when do you expect to have it implemented? - ### Any other information? \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 5382d3906..e105190e0 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -5,18 +5,26 @@ assignees: '' --- -Welcome to Cryostat! Before contributing, make sure to: -- Read the contributing guidelines https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md -- Rebase your branch on the latest upstream main -- Link any relevant issues, PR's, or documentation -- Make sure at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] +Welcome to Cryostat! Before contributing, make sure you have: +* [ ] Read the [contributing guidelines](https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md) +* [ ] Rebased your branch on top the latest upstream `main` branch +* [ ] Linked a relevant issue which this PR resolves +* [ ] Linked any other relevant issues, PR's, or documentation (if applicable) +* [ ] Attached at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] +* [ ] Request review from at least one of the following [reviewers](https://github.com/orgs/cryostatio/teams/reviewers) +* [ ] Signed the last commit _______________________________________________ Fixes: #<issue number> ### Description of the change: +*This change adds allows a match expression example to be copied to the clipboard...* ### Motivation for the change: +*This change is helpful because users may want to copy the example for easier use...* + ### How to manually test: +1. *Run CRYOSTAT_IMAGE=quay... sh smoketest.sh...* +2. *...* \ No newline at end of file From cd3df116077024f295fdf35871da274d2d7fc27f Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Tue, 29 Nov 2022 13:45:35 -0500 Subject: [PATCH 07/11] changed formatting and heading sizes --- .github/pull_request_template.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index e105190e0..81cb7f5e3 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -5,16 +5,6 @@ assignees: '' --- -Welcome to Cryostat! Before contributing, make sure you have: -* [ ] Read the [contributing guidelines](https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md) -* [ ] Rebased your branch on top the latest upstream `main` branch -* [ ] Linked a relevant issue which this PR resolves -* [ ] Linked any other relevant issues, PR's, or documentation (if applicable) -* [ ] Attached at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] -* [ ] Request review from at least one of the following [reviewers](https://github.com/orgs/cryostatio/teams/reviewers) -* [ ] Signed the last commit - -_______________________________________________ Fixes: #<issue number> @@ -27,4 +17,14 @@ Fixes: #<issue number> ### How to manually test: 1. *Run CRYOSTAT_IMAGE=quay... sh smoketest.sh...* -2. *...* \ No newline at end of file +2. *...* +_______________________________________________ + +## Welcome to Cryostat! Before contributing, make sure you have: +* [ ] Read the [contributing guidelines](https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md) +* [ ] Rebased your branch on top the latest upstream `main` branch +* [ ] Linked a relevant issue which this PR resolves +* [ ] Linked any other relevant issues, PR's, or documentation (if applicable) +* [ ] Attached at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] +* [ ] Request review from at least one of the following [reviewers](https://github.com/orgs/cryostatio/teams/reviewers) +* [ ] Signed the last commit \ No newline at end of file From d2d12309cb4b0c68946fd68a1098bc025dad7ce3 Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Tue, 29 Nov 2022 13:47:53 -0500 Subject: [PATCH 08/11] changed header sizes again, and fixed issue --- .github/ISSUE_TEMPLATE/bug_report.md | 12 ++++----- .github/ISSUE_TEMPLATE/feature_request.md | 4 +-- .github/pull_request_template.md | 32 +++++++++-------------- 3 files changed, 20 insertions(+), 28 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 57b4ab72d..3ee5fa934 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,25 +7,25 @@ assignees: '' --- -### Current Behavior: +## Current Behavior: A concise description of what you're experiencing. -### Expected Behavior: +## Expected Behavior: A concise description of what you expected to happen. -### Screenshots +## Screenshots If applicable, add screenshots to help explain your problem. -### Steps To Reproduce: +## Steps To Reproduce: 1. In this environment... 2. With this config... 3. Run '...' 4. See error... -### Environment: +## Environment: - OS: [e.g. Ubuntu 20.04] - Environment: [e.g. OpenShift 4.7] - Version [e.g. 2.2.0] -### Anything else: +## Anything else: Links? References? Anything that will give us more context about the issue that you are encountering! diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 2bcdb266c..97f7d4cf9 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -7,7 +7,7 @@ assignees: '' --- -### Describe the feature +## Describe the feature A clear and concise description of what the feature is. -### Any other information? \ No newline at end of file +## Any other information? \ No newline at end of file diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 81cb7f5e3..5d5883555 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,30 +1,22 @@ ---- -title: '[Bug] <title>' -labels: bug, needs triage -assignees: '' - ---- - +# Welcome to Cryostat! Before contributing, make sure you have: +* [ ] Read the [contributing guidelines](https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md) +* [ ] Rebased your branch on top the latest upstream `main` branch +* [ ] Linked a relevant issue which this PR resolves +* [ ] Linked any other relevant issues, PR's, or documentation (if applicable) +* [ ] Attached at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] +* [ ] Request review from at least one of the following [reviewers](https://github.com/orgs/cryostatio/teams/reviewers) +* [ ] Signed the last commit +_______________________________________________ Fixes: #<issue number> -### Description of the change: +## Description of the change: *This change adds allows a match expression example to be copied to the clipboard...* -### Motivation for the change: +## Motivation for the change: *This change is helpful because users may want to copy the example for easier use...* -### How to manually test: +## How to manually test: 1. *Run CRYOSTAT_IMAGE=quay... sh smoketest.sh...* 2. *...* -_______________________________________________ - -## Welcome to Cryostat! Before contributing, make sure you have: -* [ ] Read the [contributing guidelines](https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md) -* [ ] Rebased your branch on top the latest upstream `main` branch -* [ ] Linked a relevant issue which this PR resolves -* [ ] Linked any other relevant issues, PR's, or documentation (if applicable) -* [ ] Attached at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] -* [ ] Request review from at least one of the following [reviewers](https://github.com/orgs/cryostatio/teams/reviewers) -* [ ] Signed the last commit \ No newline at end of file From b5688c94f6377e5f3e862067ac38bb8ff332f8b0 Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Tue, 29 Nov 2022 14:50:24 -0500 Subject: [PATCH 09/11] fix pr heading Signed-off-by: Max Cao <macao@redhat.com> --- .github/pull_request_template.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 5d5883555..87b9c6e8e 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,11 +1,12 @@ -# Welcome to Cryostat! Before contributing, make sure you have: +# Welcome to Cryostat! 👋 +## Before contributing, make sure you have: * [ ] Read the [contributing guidelines](https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md) * [ ] Rebased your branch on top the latest upstream `main` branch * [ ] Linked a relevant issue which this PR resolves * [ ] Linked any other relevant issues, PR's, or documentation (if applicable) * [ ] Attached at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] * [ ] Request review from at least one of the following [reviewers](https://github.com/orgs/cryostatio/teams/reviewers) -* [ ] Signed the last commit +* [ ] Signed the last commit (`git commit --amend --signoff`) _______________________________________________ Fixes: #<issue number> From d5bf0c46f6381e4fb47ee5ed27d220943da50a06 Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Tue, 29 Nov 2022 19:21:09 -0500 Subject: [PATCH 10/11] make ci fail if needs-triage is applied to pr, allow mergify to stick that label onto all prs not from @reviewers --- .github/pull_request_template.md | 13 ++++++------- .github/workflows/ci.yaml | 3 +++ .mergify.yml | 8 ++++++++ 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 87b9c6e8e..a4edf53b1 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,12 +1,12 @@ # Welcome to Cryostat! 👋 ## Before contributing, make sure you have: * [ ] Read the [contributing guidelines](https://github.com/cryostatio/cryostat/blob/main/CONTRIBUTING.md) -* [ ] Rebased your branch on top the latest upstream `main` branch * [ ] Linked a relevant issue which this PR resolves -* [ ] Linked any other relevant issues, PR's, or documentation (if applicable) -* [ ] Attached at least one of the following labels is attached to the PR: [chore,ci,docs,feat,fix,test] -* [ ] Request review from at least one of the following [reviewers](https://github.com/orgs/cryostatio/teams/reviewers) -* [ ] Signed the last commit (`git commit --amend --signoff`) +* [ ] Linked any other relevant issues, PR's, or documentation, if any +* [ ] Resolved all conflicts, if any +* [ ] Rebased your branch PR on top of the latest upstream `main` branch +* [ ] Attached at least one of the following labels to the PR: `[chore, ci, docs, feat, fix, test]` +* [ ] Signed the last commit: `git commit --amend --signoff` _______________________________________________ Fixes: #<issue number> @@ -17,7 +17,6 @@ Fixes: #<issue number> ## Motivation for the change: *This change is helpful because users may want to copy the example for easier use...* - ## How to manually test: -1. *Run CRYOSTAT_IMAGE=quay... sh smoketest.sh...* +1. *Run CRYOSTAT_IMAGE=quay.io... sh smoketest.sh...* 2. *...* diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3bd3c1259..cfd4cbe6e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,9 @@ jobs: node-version: [14.x] steps: + - name: Fail if needs-triage label applied + if: ${{ contains(github.event.pull_request.labels.*.name, 'needs-triage')}} + run: exit 1 - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 diff --git a/.mergify.yml b/.mergify.yml index c0fca64c3..e788d9ca7 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -9,3 +9,11 @@ pull_request_rules: - cryostat-v2.2 assignees: - "{{ author }}" + + - name: auto label PRs from non-reviewers + conditions: + - author!=@reviewers + actions: + label: + add: + - needs-triage From e9244058e65d0fbfbee77eac45cbca7410cc3679 Mon Sep 17 00:00:00 2001 From: Max Cao <macao@redhat.com> Date: Wed, 30 Nov 2022 14:19:23 -0500 Subject: [PATCH 11/11] needs-triage --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 3ee5fa934..08162e463 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,7 +2,7 @@ name: 🐞 Bug report about: Create a report to help us improve Cryostat title: '[Bug] <title>' -labels: bug, needs triage +labels: bug, needs-triage assignees: '' --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 97f7d4cf9..f76d656bb 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -2,7 +2,7 @@ name: ✨ Feature request about: Improve an existing feature or add a new one title: '[Request] <title>' -labels: feat, needs triage +labels: feat, needs-triage assignees: '' ---