-
Notifications
You must be signed in to change notification settings - Fork 20
feat: github integration #122
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
Changes from all commits
7ece0a6
9008d6e
37048d3
aa0dbbd
c9637ef
476891d
e4a42ae
38de7d6
155402f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| * @societe-generale/gbis-core @vincent-fuchs |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,88 @@ | ||||||||
| # How to contribute | ||||||||
|
|
||||||||
| We are really glad you're reading this, because we need volunteer developers to help this project | ||||||||
| come to fruition. We welcome you to contribute to our projects | ||||||||
| at [Société Générale](https://github.com/societe-generale) and help make it even better than it is | ||||||||
| today! | ||||||||
|
|
||||||||
| When contributing to this repository, please first discuss the change you wish to make via issues or | ||||||||
| pull requests. | ||||||||
|
|
||||||||
| Please note we have a code of conduct, please follow it in all your interactions with the project. | ||||||||
|
|
||||||||
| ## Pull request process | ||||||||
|
|
||||||||
| - Ensure you have performed a self-review of your changes | ||||||||
| - Ensure the new changes generate no new warnings | ||||||||
| - Ensure you have added tests that prove the fix is effective or that the feature works | ||||||||
| - Ensure new and existing unit tests pass locally with my changes | ||||||||
| - Ensure your commit message should | ||||||||
| follow [conventional commit message guidelines](https://www.conventionalcommits.org/en/v1.0.0/) | ||||||||
|
Comment on lines
+19
to
+20
|
||||||||
| - Ensure your commit message should | |
| follow [conventional commit message guidelines](https://www.conventionalcommits.org/en/v1.0.0/) | |
| - Ensure your commit message follows [conventional commit message guidelines](https://www.conventionalcommits.org/en/v1.0.0/) |
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,74 @@ | ||||||
| name: "Bug report" | ||||||
| description: "Report a reproducible bug." | ||||||
| title: "[Bug] {{summary}}" | ||||||
|
||||||
| title: "[Bug] {{summary}}" | |
| title: "[Bug]" |
Copilot
AI
Jan 20, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type: field is not a valid top-level field in GitHub issue form syntax. GitHub issue forms only support name, description, title, labels, assignees, and body at the top level. This field should be removed as it will cause the issue template to fail validation.
| type: bug |
Copilot
AI
Jan 20, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The validation field max_length is not a valid validation option for input elements in GitHub issue forms. Input elements only support the required validation option. If you want to enforce character limits, this should be mentioned in the description or placeholder text instead, as GitHub issue forms do not provide native max length validation for input fields.
| max_length: 120 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| blank_issues_enabled: false | ||
|
|
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,53 @@ | ||||||
| name: "Feature request" | ||||||
| description: "Suggest a new feature or an improvement." | ||||||
| title: "[Feature] {{summary}}" | ||||||
|
||||||
| title: "[Feature] {{summary}}" | |
| title: "[Feature] " |
Copilot
AI
Jan 20, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type: field is not a valid top-level field in GitHub issue form syntax. GitHub issue forms only support name, description, title, labels, assignees, and body at the top level. This field should be removed as it will cause the issue template to fail validation.
| type: feature |
Copilot
AI
Jan 20, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The validation field max_length is not a valid validation option for input elements in GitHub issue forms. Input elements only support the required validation option. If you want to enforce character limits, this should be mentioned in the description or placeholder text instead, as GitHub issue forms do not provide native max length validation for input fields.
| max_length: 120 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,45 @@ | ||||||
| name: "Question" | ||||||
| description: "Ask a question about how to use the project, APIs or docs." | ||||||
| title: "[Question] {{summary}}" | ||||||
|
||||||
| title: "[Question] {{summary}}" | |
| title: "[Question]" |
Copilot
AI
Jan 20, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The type: field is not a valid top-level field in GitHub issue form syntax. GitHub issue forms only support name, description, title, labels, assignees, and body at the top level. This field should be removed as it will cause the issue template to fail validation.
| type: question |
Copilot
AI
Jan 20, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The validation field max_length is not a valid validation option for input elements in GitHub issue forms. Input elements only support the required validation option. If you want to enforce character limits, this should be mentioned in the description or placeholder text instead, as GitHub issue forms do not provide native max length validation for input fields.
| max_length: 120 |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,22 @@ | ||||||
| version: 2 | ||||||
| updates: | ||||||
| - package-ecosystem: maven | ||||||
| directory: "/" | ||||||
| schedule: | ||||||
| interval: daily | ||||||
| open-pull-requests-limit: 10 | ||||||
| labels: | ||||||
| - dependencies | ||||||
| - automated | ||||||
| commit-message: | ||||||
| prefix: "build: " | ||||||
| - package-ecosystem: github-actions | ||||||
| directory: "/.github/" | ||||||
|
||||||
| directory: "/.github/" | |
| directory: "/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inconsistent pronoun usage. The text reads "with my changes" but should be "with your changes" to maintain consistency with the second-person perspective used throughout the contributing guidelines.