Skip to content

Commit

Permalink
Generated commit to update templated files based on rev fea09b1 in st…
Browse files Browse the repository at this point in the history
…ackabletech/operator-templating repo.

Original commit message:
Adds issue template. (#70)
  • Loading branch information
stackable-bot committed Feb 10, 2022
1 parent b0e9f66 commit 23e63e4
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 7 deletions.
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: "🐛 Bug Report"
description: "If something isn't working as expected 🤔."
labels: ["type/bug"]
body:
- type: markdown
attributes:
value: Thanks for taking the time to file a bug report! Please fill out this form as completely as possible.

- type: input
attributes:
label: Affected version
description: Which version do you see this bug in?

- type: textarea
attributes:
label: Current and expected behavior
description: A clear and concise description of what the operator is doing and what you would expect.
validations:
required: true

- type: textarea
attributes:
label: Possible solution
description: "If you have suggestions on a fix for the bug."

- type: textarea
attributes:
label: Additional context
description: "Add any other context about the problem here. Or a screenshot if applicable."

- type: textarea
attributes:
label: Environment
description: |
What type of kubernetes cluster you are running aginst (k3s/eks/aks/gke/other) and any other information about your environment?
placeholder: |
Examples:
Output of `kubectl version --short`
- type: dropdown
attributes:
label: Would you like to work on fixing this bug?
description: |
**NOTE**: Let us know if you would like to submit a PR for this. We are more than happy to help you through the process.
options:
- "yes"
- "no"
- "maybe"
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
blank_issues_enabled: true
contact_links:
- name: Feature request
about: 🚀 Suggest an idea for this project
url: https://github.com/stackabletech/superset-operator/discussions/new?category=ideas
- name: 🙋🏾 Question
about: Use this to ask a question about this project
url: https://github.com/stackabletech/superset-operator/discussions/new?category=q-a
- name: Other issue
about: Open an issue that doesn't fit any other category
url: https://github.com/stackabletech/superset-operator/issues/new
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/new_version.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: New Version
about: Request support for a new product version
title: "[NEW VERSION]"
labels: ''
assignees: ''

---

**Which new version of Apache Superset should we support?**

Please specify the version, version range or version numbers to support, please also add these to the issue title

**Additional information**

If possible, provide a link to release notes/changelog

**Changes required**

Are there any upstream changes that we need to support?
e.g. new features, changed features, deprecated features etc.



**Implementation checklist**

Please don't change anything in this list.
Not all of these steps are necessary for all versions.

- [ ] Update the Docker image
- [ ] Update documentation to include supported version(s)
- [ ] Update operator to support the new version (if needed)
- [ ] Update integration tests to test use the new versions (in addition or replacing old versions
- [ ] Update examples to use new versions
15 changes: 12 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
RUST_LOG: "info"
PRODUCT_NAME: superset
PRODUCT_NAME: "superset"
DEV_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-dev
TEST_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-test
STABLE_REPO_HELM_URL: https://repo.stackable.tech/repository/helm-stable
Expand Down Expand Up @@ -181,7 +181,6 @@ jobs:
- run_clippy
- run_rustfmt
- run_rustdoc
- run_udeps
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2.4.0
Expand Down Expand Up @@ -255,10 +254,20 @@ jobs:
- name: placeholder
run: echo Tests will go here

tests_passed:
name: All tests passed
needs:
- test_charts
- run_udeps
runs-on: ubuntu-latest
steps:
- name: log
run: echo All tests have passed!

package_and_publish:
name: Package Charts, Build Docker Image and publish them
needs:
- test_charts
- tests_passed
- select_repo
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion bors.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
status = [
'Run Chart Tests'
'All tests passed'
]
delete_merged_branches = true
use_squash_merge = true
Expand Down
7 changes: 4 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"rollbackPrs": true,
"schedule": [
"after 22:00 and before 6:00 every weekday"
"after 5:00 and before 6:00 every weekday"
],
"timezone": "Europe/Berlin",
"packageRules": [
Expand All @@ -25,7 +25,8 @@
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"after 22:00 and before 6:00 every weekday"
"after 5:00 and before 6:00 every weekday"
]
}
},
"ignorePaths": [".github/workflows/build.yml", ".github/workflows/reviewdog.yaml", ".github/workflows/daily_security.yml"]
}

0 comments on commit 23e63e4

Please sign in to comment.