From e0e96a9dc63949bf45a3e658c0816a380f7a19fa Mon Sep 17 00:00:00 2001 From: Seth Grover Date: Mon, 4 Nov 2024 15:30:34 -0700 Subject: [PATCH] moving issues upstream to cisa --- .github/ISSUE_TEMPLATE/bug_report.md | 39 ------------------- .github/ISSUE_TEMPLATE/config.yml | 6 +++ .../feature-enhancement-request.md | 21 ---------- .github/ISSUE_TEMPLATE/training.md | 20 ---------- .github/workflows/issues-to-dev-project.yml | 18 --------- .../workflows/issues-to-training-project.yml | 18 --------- 6 files changed, 6 insertions(+), 116 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml delete mode 100644 .github/ISSUE_TEMPLATE/feature-enhancement-request.md delete mode 100644 .github/ISSUE_TEMPLATE/training.md delete mode 100644 .github/workflows/issues-to-dev-project.yml delete mode 100644 .github/workflows/issues-to-training-project.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 1e7bfe0ed..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -name: Bug report -projects: 'idaholab/1' -about: Something isn't working correctly -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. 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 Logs ** -If applicable, attach screenshots or container logs (e.g., the relevant bits of `./scripts/logs`) to help explain your problem. - -**Malcolm Version:** - - Version [e.g. v24.01.0] - -**How are you running Malcolm?** -- [ ] [ISO installed](https://idaholab.github.io/Malcolm/docs/malcolm-hedgehog-e2e-iso-install.html#InstallationExample) (on VM or dedicated hardware) -- [ ] via [Docker](https://idaholab.github.io/Malcolm/docs/malcolm-hedgehog-e2e-iso-install.html#InstallationExample) on [Linux](https://idaholab.github.io/Malcolm/docs/host-config-linux.html#HostSystemConfigLinux) -- [ ] via Docker on [Microsoft Windows](https://idaholab.github.io/Malcolm/docs/host-config-windows.html#HostSystemConfigWindows) -- [ ] via Docker on [macOS](https://idaholab.github.io/Malcolm/docs/host-config-macos.html#HostSystemConfigMac) -- [ ] via [Kubernetes](https://idaholab.github.io/Malcolm/docs/kubernetes.html#Kubernetes) (please provide platform details: e.g., on-prem K3s, Amazon AWS EKS, Microsoft Azure AKS, etc.) -- [ ] other (please describe) - -**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 000000000..2ec482abf --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,6 @@ +--- +blank_issues_enabled: false +contact_links: + - name: Malcolm Issues @ DHS CISA + url: https://github.com/cisagov/malcolm/issues?q=is%3Aissue+is%3Aopen+-label%3Atraining + about: Issue and project tracking is managed in DHS CISA's fork upstream. diff --git a/.github/ISSUE_TEMPLATE/feature-enhancement-request.md b/.github/ISSUE_TEMPLATE/feature-enhancement-request.md deleted file mode 100644 index fe26bb3b1..000000000 --- a/.github/ISSUE_TEMPLATE/feature-enhancement-request.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -name: Feature/enhancement request -projects: 'idaholab/1' -about: Suggest an idea for Malcolm -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. diff --git a/.github/ISSUE_TEMPLATE/training.md b/.github/ISSUE_TEMPLATE/training.md deleted file mode 100644 index a41fc6812..000000000 --- a/.github/ISSUE_TEMPLATE/training.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Training -projects: 'idaholab/24' -about: Propose a subject for training topics -title: '' -labels: training -assignees: '' - ---- - -**For what topic would you like to see training developed?** -Provide a brief description of the topic to be covered in the training module. - -**What format would be best suited for this training?** -E.g., a video on the [YouTube channel](https://www.youtube.com/c/MalcolmNetworkTrafficAnalysisToolSuite), a section added to the documentation, slides, a document, etc. - -**Is there existing [Malcolm documentation](https://idaholab.github.io/Malcolm/) that could be improved by including this topic?** - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/workflows/issues-to-dev-project.yml b/.github/workflows/issues-to-dev-project.yml deleted file mode 100644 index a38a870a9..000000000 --- a/.github/workflows/issues-to-dev-project.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Adds all issues that include the 'training' label to Malcolm Training project board - -on: - issues: - types: - - opened - -jobs: - add-to-project: - name: Add issue to project - runs-on: ubuntu-latest - steps: - - uses: actions/add-to-project@v0.5.0 - with: - project-url: https://github.com/orgs/idaholab/projects/24 - github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} - labeled: training - label-operator: OR diff --git a/.github/workflows/issues-to-training-project.yml b/.github/workflows/issues-to-training-project.yml deleted file mode 100644 index f44eb0cf5..000000000 --- a/.github/workflows/issues-to-training-project.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Adds all issues that don't include the 'training' label to Malcolm project board - -on: - issues: - types: - - opened - -jobs: - add-to-project: - name: Add issue to project - runs-on: ubuntu-latest - steps: - - uses: actions/add-to-project@v0.5.0 - with: - project-url: https://github.com/orgs/idaholab/projects/1 - github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} - labeled: training - label-operator: NOT