From 70a48f2efed8c7efb67d5ed37e44e5d5023e2146 Mon Sep 17 00:00:00 2001 From: Zack Hodgson Brady Date: Sun, 10 Mar 2024 16:44:30 -0400 Subject: [PATCH] updated github files --- .github/ISSUE_TEMPLATE/bug_report.md | 50 +++++++++++++++-------- .github/ISSUE_TEMPLATE/feature_request.md | 34 ++++++++++----- .github/PULL_REQUEST_TEMPLATE.md | 42 +++++++++++++------ .github/workflows/release.yaml | 5 ++- .github/workflows/unittest.yaml | 18 ++++---- 5 files changed, 99 insertions(+), 50 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 759b6738..320367c2 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -2,32 +2,50 @@ name: Bug Report about: Create a report to help us improve! title: '[BUG]' -labels: 'kind/bug' +labels: 'bug' assignees: '' --- - + **Environmental Info:** -* + + + +- **Hauler Version:** -* -**System CPU architecture, OS, and Version:** -* + + +- + +**Describe the Bug:** + + + +- + +**Steps to Reproduce:** + + + +- + +**Expected Behavior:** + + + +- + +**Actual Behavior:** -**Describe the bug:** -* + -**Steps To Reproduce:** -* +- -**Expected behavior:** -* +**Additional Context:** -**Actual behavior:** -* + -**Additional context / logs:** -* +- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 6f65bf94..9d6f7a12 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,21 +1,33 @@ --- name: Feature Request -about: Create a report to help us improve! +about: Submit a request for us to improve! title: '[RFE]' -labels: 'kind/rfe' +labels: 'enhancement' assignees: '' --- - + -**Is your feature request related to a problem? Please describe.** -* +**Is this RFE related to an Existing Problem? If so, please describe:** -**Describe the solution you'd like** -* + -**Describe alternatives you've considered** -* +- -**Additional context** -* \ No newline at end of file +**Describe Proposed Solution(s):** + + + +- + +**Describe Possible Alternatives:** + + + +- + +**Additional Context:** + + + +- diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 7dd924e9..22bc8804 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,20 +1,36 @@ **Please check below, if the PR fulfills these requirements:** -- [ ] The commit message follows the guidelines. -- [ ] Tests for the changes have been added (for bug fixes / features). -- [ ] Docs have been added / updated (for bug fixes / features). +- [ ] Commit(s) and code follow the repositories guidelines. +- [ ] Test(s) have been added or updated to support these change(s). +- [ ] Doc(s) have been added or updated to support these change(s). + -**What kind of change does this PR introduce?** -* +**Associated Links:** -**What is the current behavior?** -* + -**What is the new behavior (if this is a feature change)?** -* +- -**Does this PR introduce a breaking change?** -* +**Types of Changes:** -**Other information**: -* \ No newline at end of file + + +- + +**Proposed Changes:** + + + +- + +**Verification/Testing of Changes:** + + + +- + +**Additional Context:** + + + +- diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 44e94b03..dd7b1524 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,13 +1,14 @@ -name: CI +name: Release Workflow on: workflow_dispatch: push: - tags: + tags: - '*' jobs: goreleaser: + name: Release runs-on: ubuntu-latest timeout-minutes: 30 steps: diff --git a/.github/workflows/unittest.yaml b/.github/workflows/unittest.yaml index c671380d..ca6ef99d 100644 --- a/.github/workflows/unittest.yaml +++ b/.github/workflows/unittest.yaml @@ -1,21 +1,23 @@ -name: Unit Test +name: Unit Test Workflow + on: push: paths-ignore: - - "**.md" - - ".github/**" - - "!.github/workflows/unittest.yaml" + - '**.md' + - '.github/**' + - '!.github/workflows/unittest.yaml' pull_request: paths-ignore: - - "**.md" - - ".github/**" - - "!.github/workflows/unitcoverage.yaml" + - '**.md' + - '.github/**' + - '!.github/workflows/unitcoverage.yaml' workflow_dispatch: {} + jobs: test: name: Unit Tests runs-on: ubuntu-latest - timeout-minutes: 20 + timeout-minutes: 30 steps: - name: Checkout uses: actions/checkout@v2