Skip to content

Commit 0198769

Browse files
authored
Merge branch 'kagenti:main' into slack_tool
2 parents a033e44 + d83432f commit 0198769

28 files changed

Lines changed: 2212 additions & 590 deletions
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
title: "bug: "
4+
labels:
5+
- kind/bug
6+
body:
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Describe the bug
11+
description: Please provide a clear and concise description of the bug.
12+
placeholder: |
13+
Add logs and screenshots if any.
14+
validations:
15+
required: true
16+
17+
- type: textarea
18+
id: reproducing
19+
attributes:
20+
label: Steps To Reproduce
21+
description: Steps to reproduce the behavior.
22+
placeholder: |
23+
1. Go to '...'
24+
2. Click on '...'
25+
3. Scroll down to '...'
26+
4. See the error
27+
validations:
28+
required: true
29+
30+
- type: textarea
31+
id: expected
32+
attributes:
33+
label: Expected Behavior
34+
description: A clear and concise description of what you expected to happen.
35+
validations:
36+
required: true
37+
38+
- type: textarea
39+
id: additional
40+
attributes:
41+
label: Additional Context
42+
description: Add any other context about the problem here.

.github/ISSUE_TEMPLATE/epic.yaml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Epic
2+
description: For tracking a large feature, including how to demo it.
3+
title: "epic: "
4+
labels:
5+
- epic
6+
body:
7+
- type: textarea
8+
id: objective
9+
attributes:
10+
label: Demo Objective
11+
description: Please describe the objective of your demo.
12+
placeholder: |
13+
- [ ] User should be able to ...
14+
- [ ] ...
15+
validations:
16+
required: true
17+
18+
- type: textarea
19+
id: steps
20+
attributes:
21+
label: Demo Steps
22+
description: Please describe the steps for the demo.
23+
placeholder: |
24+
1. Admin does X
25+
1. User does Y
26+
1. Everyone is happy :)
27+
28+
- type: checkboxes
29+
id: action-items
30+
attributes:
31+
label: Action Items
32+
description: Please check the following
33+
options:
34+
- label: Scope of the current demo is necessary to fit in the prototype boundaries
35+
required: true
36+
- label: Contribute to the final demo script and recording
37+
38+
- type: textarea
39+
id: stories
40+
attributes:
41+
label: Stories
42+
placeholder: |
43+
- [ ] (Example) Add new API group
44+
- [ ] (Example) Add Widget API type
45+
- [ ] (Example) Add WidgetController
46+
validations:
47+
required: false
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "feature: "
4+
labels:
5+
- kind/feature
6+
body:
7+
- type: textarea
8+
id: problem
9+
attributes:
10+
label: Feature Description
11+
description: Is your feature request related to a problem? A clear and concise description of what the problem is.
12+
placeholder: I'm always frustrated when [...]
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: solution
18+
attributes:
19+
label: Proposed Solution
20+
description: A clear and consise description of what you want to happen.
21+
placeholder: We can do [...]
22+
validations:
23+
required: true
24+
25+
- type: checkboxes
26+
id: contribute
27+
attributes:
28+
label: Want to contribute?
29+
options:
30+
- label: I would like to work on this issue.
31+
required: false
32+
33+
- type: textarea
34+
id: additional
35+
attributes:
36+
label: Additional Context
37+
description: Add any other context or screenshots about the feature request here.
38+
validations:
39+
required: false

.github/dependabot.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"

.github/pr-verifier.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: pr-verifier
2+
3+
on:
4+
# NB: using `pull_request_target` runs this in the context of
5+
# the base repository, so it has permission to upload to the checks API.
6+
# This means changes won't kick in to this file until merged onto the
7+
# main branch.
8+
pull_request_target:
9+
types: [opened, edited, reopened, synchronize]
10+
11+
jobs:
12+
verify-pr:
13+
name: verify PR contents
14+
permissions:
15+
checks: write
16+
pull-requests: read
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Verifier action
20+
id: verifier
21+
uses: kubernetes-sigs/kubebuilder-release-tools@v0.4.3
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/pull_request_template.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!--
2+
Thanks for creating a pull request!
3+
4+
If this is your first time, please make sure to review CONTRIBUTING.MD.
5+
6+
Please copy the appropriate `:text:` or icon to the beginning of your PR title:
7+
8+
:sparkles: ✨ feature
9+
:bug: 🐛 bug fix
10+
:book: 📖 docs
11+
:memo: 📝 proposal
12+
:warning: ⚠️ breaking change
13+
:seedling: 🌱 other/misc
14+
:question: ❓ requires manual review/categorization
15+
16+
-->
17+
## Summary
18+
19+
## Related issue(s)
20+
21+
Fixes #

.github/spellcheck/.spellcheck.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
matrix:
2+
- name: Markdown
3+
aspell:
4+
lang: en
5+
dictionary:
6+
wordlists:
7+
- .github/spellcheck/.wordlist.txt
8+
encoding: utf-8
9+
pipeline:
10+
- pyspelling.filters.markdown:
11+
- pyspelling.filters.html:
12+
comments: false
13+
ignores:
14+
- code
15+
- pre
16+
sources:
17+
- '**/*.md'
18+
default_encoding: utf-8

0 commit comments

Comments
 (0)