-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add github billing plan to org spec #10
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
Closed
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
f093a21
feat: add github billing plan to org spec
vince-vibin a59b868
ci: add github templates
vince-vibin af5abca
feat: implement enterprise only feature check
vince-vibin ab06df2
docs: generate crd docs
vince-vibin 7be712b
fix: run make lint-fix
vince-vibin b0d61a9
ci: update docker image
vince-vibin 29b1e32
chore: add tests
vince-vibin fbf846d
fix: implement feedback
vince-vibin e7c3d0b
fix: skip allowed action reconcile if all actions are allowed
vince-vibin ac3ec2f
fix: skip rulesets if plan doesnt support it
vince-vibin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,46 @@ | ||
| name: Bug Report | ||
| description: Report a problem with the Helm chart | ||
| labels: [bug] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thanks for reporting a bug! Please fill out the sections below. | ||
| - type: input | ||
| id: chart-version | ||
| attributes: | ||
| label: Chart Version | ||
| placeholder: e.g. 1.2.3 | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: helm-version | ||
| attributes: | ||
| label: Helm Version | ||
| placeholder: e.g. 3.15.0 | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: k8s-version | ||
| attributes: | ||
| label: Kubernetes Version | ||
| placeholder: e.g. 1.30.2 | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Description | ||
| description: What happened? What did you expect? | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: values | ||
| attributes: | ||
| label: Relevant values.yaml overrides | ||
| render: yaml | ||
| - type: textarea | ||
| id: logs | ||
| attributes: | ||
| label: Relevant logs or error output | ||
| render: text |
This file contains hidden or 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,27 @@ | ||
| name: Feature Request | ||
| description: Suggest a new feature or improvement | ||
| labels: [enhancement] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| Thanks for suggesting a feature! Please describe what you'd like. | ||
| - type: textarea | ||
| id: problem | ||
| attributes: | ||
| label: Problem or motivation | ||
| description: What problem does this solve? Why is it needed? | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: solution | ||
| attributes: | ||
| label: Proposed solution | ||
| description: How would you like this to work? | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: alternatives | ||
| attributes: | ||
| label: Alternatives considered | ||
| description: Any workarounds or alternative approaches you've considered? |
This file contains hidden or 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,25 @@ | ||
| ## Description | ||
|
|
||
| <!-- Briefly describe the changes introduced by this PR. --> | ||
|
|
||
| ## Type of Change | ||
|
|
||
| - [ ] Bug fix (non-breaking change that fixes an issue) | ||
| - [ ] New feature (non-breaking change that adds functionality) | ||
| - [ ] Breaking change (fix or feature that would cause existing functionality to change) | ||
| - [ ] Documentation update | ||
| - [ ] Chore (refactoring, CI changes, dependency updates, etc.) | ||
|
|
||
| ## Checklist | ||
|
|
||
| - [ ] My commits follow the [Conventional Commits](https://www.conventionalcommits.org/) format | ||
| - [ ] I have run `helm lint .` and it passes | ||
| - [ ] I have run `helm unittest .` and all tests pass | ||
| - [ ] I have run `helm schema` and the schema is up to date | ||
| - [ ] I have added/updated unit tests for any new or changed templates | ||
| - [ ] I have updated documentation (README, CONTRIBUTING, values comments) if needed | ||
|
|
||
| ## Related Issues | ||
|
|
||
| <!-- Link related issues: Fixes #123, Relates to #456 --> | ||
|
|
This file contains hidden or 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
11 changes: 11 additions & 0 deletions
11
api/v1alpha1/applyconfiguration/api/v1alpha1/organizationspec.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,6 +1,6 @@ | ||
| module github.com/Interhyp/git-hubby | ||
|
|
||
| go 1.25.7 | ||
| go 1.26.3 | ||
|
|
||
| require ( | ||
| github.com/PuerkitoBio/rehttp v1.4.0 | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.