-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Differences: - All APIs are fully qualified in both the options (`--must-exist=certificates.cert-manager.io`, `--ignore=deployment.apps`) and the output files (`objects-Certificate.cert-manager.io.json`). This makes it possible to distinguish between objects with the same kind but different groups. See #47. - Resources without a list endpoint are ignored and do not cause and error or need to be explicitly ignored. - Ignore and must-exist options are now command line flags instead of files in `/usr/local/share`. Fixes #47 and #42.
- Loading branch information
Showing
35 changed files
with
1,463 additions
and
817 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: 🐛 Bug report | ||
description: Create a report to help us improve 🎉 | ||
labels: | ||
- bug | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: A clear and concise description of what the bug is. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Additional Context | ||
description: Add any other context about the problem here. | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Logs | ||
description: If applicable, add logs to help explain the bug. | ||
render: shell | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: expected_behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: A clear and concise description of what you expected to happen. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction_steps | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Describe steps to reproduce the behavior | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: version | ||
attributes: | ||
label: Versions | ||
placeholder: v1.2.3 [, Kubernetes 1.21] | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: ❓ Help and Support RocketChat Channel | ||
url: https://community.appuio.ch | ||
about: Please ask and answer questions here. 🏥 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: 🚀 Feature request | ||
description: Suggest an idea for this project 💡 | ||
labels: | ||
- enhancement | ||
|
||
body: | ||
- type: textarea | ||
id: summary | ||
attributes: | ||
label: Summary | ||
value: | | ||
**As** role name\ | ||
**I want** a feature or functionality\ | ||
**So that** I get certain business value | ||
description: This user story helps us to quickly understand what this idea is about. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: context | ||
attributes: | ||
label: Context | ||
description: Add more information here. You are completely free regarding form and length. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: out_of_scope | ||
attributes: | ||
label: Out of Scope | ||
description: List aspects that are explicitly not part of this feature | ||
placeholder: | | ||
- ... | ||
- ... | ||
- ... | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: links | ||
attributes: | ||
label: Further links | ||
description: URLs of relevant Git repositories, PRs, Issues, etc. | ||
placeholder: | | ||
- #567 | ||
- https://kubernetes.io/docs/reference/ | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: acceptance_criteria | ||
attributes: | ||
label: Acceptance Criteria | ||
description: If you already have ideas what the detailed requirements are, please list them below in given-when-then expressions. | ||
placeholder: | | ||
- Given a precondition, when an action happens, then expect a result | ||
```gherkin | ||
Given a precondition | ||
When an action happens | ||
Then expect a result | ||
``` | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: implementation_idea | ||
attributes: | ||
label: Implementation Ideas | ||
description: If applicable, shortly list possible implementation ideas | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,19 @@ | ||
<!-- | ||
Thank you for your pull request. Please provide a description above and | ||
review the checklist below. | ||
## Summary | ||
|
||
Contributors guide: ./CONTRIBUTING.md | ||
--> | ||
* Short summary of what's included in the PR | ||
* Give special note to breaking changes | ||
|
||
## Checklist | ||
<!-- | ||
Remove items that do not apply. For completed items, change [ ] to [x]. | ||
--> | ||
|
||
- [ ] Keep pull requests small so they can be easily reviewed. | ||
- [ ] Update the documentation. | ||
- [ ] Categorize the PR by setting a good title and adding one of the labels: | ||
`bug`, `enhancement`, `documentation`, `change`, `breaking`, `dependency` | ||
as they show up in the changelog | ||
- [ ] Update tests. | ||
- [ ] Link this PR to related issues. | ||
|
||
<!-- | ||
Remove items that do not apply. For completed items, change [ ] to [x]. | ||
NOTE: these things are not required to open a PR and can be done afterwards, | ||
while the PR is open. | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,42 @@ | ||
{ | ||
"pr_template": "- ${{TITLE}} (#${{NUMBER}})", | ||
"categories": [ | ||
{ | ||
"title": "## 🚀 Features", | ||
"labels": ["enhancement", "feature"] | ||
}, | ||
{ | ||
"title": "## 🛠️ Minor Changes", | ||
"labels": ["change"] | ||
}, | ||
{ | ||
"title": "## 🔎 Breaking Changes", | ||
"labels": ["breaking"] | ||
}, | ||
{ | ||
"title": "## 🐛 Fixes", | ||
"labels": ["bug", "fix"] | ||
}, | ||
{ | ||
"title": "## 📄 Documentation", | ||
"labels": ["documentation"] | ||
}, | ||
{ | ||
"title": "## 🔗 Dependency Updates", | ||
"labels": ["dependency"] | ||
} | ||
], | ||
"template": "${{CATEGORIZED_COUNT}} changes since ${{FROM_TAG}}\n\n${{CHANGELOG}}" | ||
"pr_template": "- ${{TITLE}} (#${{NUMBER}})", | ||
"categories": [ | ||
{ | ||
"title": "## 🚀 Features", | ||
"labels": [ | ||
"enhancement" | ||
] | ||
}, | ||
{ | ||
"title": "## 🛠️ Minor Changes", | ||
"labels": [ | ||
"change" | ||
] | ||
}, | ||
{ | ||
"title": "## 🔎 Breaking Changes", | ||
"labels": [ | ||
"breaking" | ||
] | ||
}, | ||
{ | ||
"title": "## 🐛 Fixes", | ||
"labels": [ | ||
"bug" | ||
] | ||
}, | ||
{ | ||
"title": "## 📄 Documentation", | ||
"labels": [ | ||
"documentation" | ||
] | ||
}, | ||
{ | ||
"title": "## 🔗 Dependency Updates", | ||
"labels": [ | ||
"dependency" | ||
] | ||
} | ||
], | ||
"template": "${{CATEGORIZED_COUNT}} changes since ${{FROM_TAG}}\n\n${{CHANGELOG}}" | ||
} |
Oops, something went wrong.