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

updated github files #203

Merged
merged 1 commit into from
Mar 11, 2024
Merged
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
50 changes: 34 additions & 16 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,50 @@
name: Bug Report
about: Create a report to help us improve!
title: '[BUG]'
labels: 'kind/bug'
labels: 'bug'
assignees: ''
---

<!-- Thank you for helping us to improve Hauler! We welcome all bug reports. Please fill out each area of the template so we can better help you. Comments like this will be hidden when you post but you can delete them if you wish. -->
<!-- Thank you for helping us to improve Hauler! We welcome all bug reports. Please fill out each area of the template so we can better assist you. Comments like this will be hidden when you submit, but you can delete them if you wish. -->

**Environmental Info:**
*

<!-- Provide the output of "uname -a" -->

-

**Hauler Version:**
*

**System CPU architecture, OS, and Version:**
* <!-- Provide the output from "uname -a" on the system where Hauler is installed -->
<!-- Provide the output of "hauler version" -->

-

**Describe the Bug:**

<!-- Provide a clear and concise description of the bug -->

-

**Steps to Reproduce:**

<!-- Provide a clear and concise way to reproduce the bug -->

-

**Expected Behavior:**

<!-- Provide a clear and concise description of what you expected to happen -->

-

**Actual Behavior:**

**Describe the bug:**
* <!-- A clear and concise description of the bug. -->
<!-- Provide a clear and concise description of what actually happens -->

**Steps To Reproduce:**
* <!-- A clear and concise way to reproduce the bug. -->
-

**Expected behavior:**
* <!-- A clear and concise description of what you expected to happen, without the bug. -->
**Additional Context:**

**Actual behavior:**
* <!-- A clear and concise description of what actually happened. -->
<!-- Provide any other context and/or logs about the bug -->

**Additional context / logs:**
* <!-- Add any other context and/or logs about the problem here. -->
-
34 changes: 23 additions & 11 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -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: ''
---

<!-- Thanks for helping us to improve Hauler! We welcome all requests for enhancements (RFEs). Please fill out each area of the template so we can better help you. Comments like this will be hidden when you post but you can delete them if you wish. -->
<!-- Thank you for helping us to improve Hauler! We welcome all requests for enhancements (RFEs). Please fill out each area of the template so we can better assist you. Comments like this will be hidden when you submit, but you can delete them if you wish. -->

**Is your feature request related to a problem? Please describe.**
* <!-- A clear and concise description of the problem. -->
**Is this RFE related to an Existing Problem? If so, please describe:**

**Describe the solution you'd like**
* <!-- A clear and concise description of what you want to happen. -->
<!-- Provide a clear and concise description of the problem -->

**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. -->
**Describe Proposed Solution(s):**

<!-- Provide a clear and concise description of what you want to happen -->

-

**Describe Possible Alternatives:**

<!-- Provide a clear and concise description of any alternative solutions or features you've considered -->

-

**Additional Context:**

<!-- Provide a clear and concise description of the problem -->

-
42 changes: 29 additions & 13 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -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).

<!-- Comments like this will be hidden when you submit, but you can delete them if you wish. -->

**What kind of change does this PR introduce?**
* <!-- Bug fix, feature, docs update, ... -->
**Associated Links:**

**What is the current behavior?**
* <!-- You can also link to an open issue here -->
<!-- Provide any associated or linked related to these change(s) -->

**What is the new behavior (if this is a feature change)?**
* <!-- What changes did this PR introduce? -->
-

**Does this PR introduce a breaking change?**
* <!-- What changes might users need to make in their application due to this PR? -->
**Types of Changes:**

**Other information**:
* <!-- Any additional information -->
<!-- What is the type of change? Bugfix, Feature, Breaking Change, etc... -->

-

**Proposed Changes:**

<!-- Provide the high level and low level description of your change(s) so we can better understand these change(s) -->

-

**Verification/Testing of Changes:**

<!-- How can the changes be verified? Provide the steps necessary to reproduce and verify the proposed change(s) -->

-

**Additional Context:**

<!-- Provide any additional information, such as if this is a small or large or complex change. Feel free to kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc... -->

-
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/unittest.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down