Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
[KOGITO-8179]-Fix Operator imports with Container-builder
Browse files Browse the repository at this point in the history
Signed-off-by: desmax74 <mdessi@redhat.com>
  • Loading branch information
desmax74 committed Oct 26, 2022
1 parent 33a68b8 commit ce65988
Show file tree
Hide file tree
Showing 9 changed files with 136 additions and 35 deletions.
62 changes: 62 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Bug Report
description: Report a bug in Container Builder
labels: kind/bug
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
The preferred method to file a bug is [our JIRA board](https://issues.redhat.com/projects/KOGITO). You are still allowed to submit a GitHub issue, but you may experience delays in the feedback.
- type: textarea
validations:
required: true
attributes:
label: Describe the bug
description: >-
Describe the issue you are experiencing here to communicate to the
maintainers. Tell us what you were trying to do and what happened.
Provide a clear and concise description of what the problem is.
- type: textarea
attributes:
label: Expected behavior
description: >-
Describe the expected behavior clearly and concisely.
- type: textarea
attributes:
label: Actual behavior
description: >-
Describe the actual behavior clearly and concisely.
- type: textarea
attributes:
label: How to Reproduce?
description: >-
Link to a small reproducer ((preferably a golang project that it is using this module)) or attach an archive containing the reproducer to the issue.
placeholder: |
Reproducer:
Steps to reproduce the behavior:
1.
2.
3.
- type: markdown
attributes:
value: |
## Environment
- type: input
attributes:
label: Output of `uname -a` or `ver`
- type: input
attributes:
label: Golang version
- type: input
attributes:
label: Operator-sdk version
- type: input
attributes:
label: Kogito Serverless Operator version or git rev
- type: textarea
attributes:
label: Additional information
description: >
If you have any additional information for us, use the field below.
Please note, you can attach screenshots or screen recordings here, by
dragging and dropping files in the field below.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
blank_issues_enabled: true
contact_links:
- name: Jira
url: https://issues.redhat.com/projects/KOGITO
about: Kogito Jira Board
- name: Question
url: https://stackoverflow.com/questions/ask?tags=kogito-serverless
about: I have a question about how to use Container Builder.
- name: Kogito Zulip chat
url: https://kie.zulipchat.com/
about: If you prefer live chat with the developers, we have a Zulip chat where we all hang out.
- name: Kogito Development mailing list
url: https://groups.google.com/g/kogito-development
about: You can also ask questions on our mailing list.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Feature request / Enhancement
description: Request or propose a new feature/enhancement
labels: kind/enhancement
body:
- type: textarea
validations:
required: true
attributes:
label: Description
description: >-
Describe the feature here.
- type: textarea
attributes:
label: Implementation ideas
description: >-
If you have any implementation ideas, they can go here.
22 changes: 22 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!--
Welcome to the Container Builder! Before contributing, make sure to:
- Rebase your branch on the latest upstream main
- Link any relevant issues, PR's, or documentation
- Check that the commit message is concice and helpful:
- When fixing an issue, add "Closes #<ISSUE_NUMBER>"
- Follow the below checklist
-->

**Description of the change:**


**Motivation for the change:**


**Checklist**

- [ ] Add or Modify a unit test for your change
- [ ] Have you verified that tall the tests are passing?
22 changes: 22 additions & 0 deletions .github/workflows/test-go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: go
on:
pull_request:
types: [opened, reopened, edited, synchronize]
branches:
- main

jobs:
unit:
name: unit
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.19
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: make test
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: cover.out
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/go.imports.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/kogito-sw-kaniko.iml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

0 comments on commit ce65988

Please sign in to comment.