-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
236 additions
and
91 deletions.
There are no files selected for viewing
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,33 @@ | ||
name: "Bug Report" | ||
description: Report a ug found while using the Aurora Core. | ||
title: "[Bug]: " | ||
labels: ["Type: Bug", "Status: Triage"] | ||
body: | ||
- type: textarea | ||
id: current-behavior | ||
attributes: | ||
label: Current behaviour | ||
description: A description of what is currently happening, including screenshots and other useful information (**DO NOT INCLUDE PRIVATE INFORMATION**). | ||
placeholder: Currently... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: desired-behavior | ||
attributes: | ||
label: Desired behaviour | ||
description: A clear description of what you think should happen. | ||
placeholder: In this situation, I expected ... | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Steps to reproduce | ||
description: Clearly describe which steps or actions you have taken to arrive at the problem. If you have some experience with the code, please link to the specific pieces of code. | ||
placeholder: I did X, then Y, before arriving at Z, when ERROR ... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: other | ||
attributes: | ||
label: Other information | ||
description: Any other details? | ||
|
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,23 @@ | ||
name: "Feature Request" | ||
description: Suggest a feature or enhancement to improve Aurora Core. | ||
labels: ["Type: Idea"] | ||
body: | ||
- type: textarea | ||
id: feature | ||
attributes: | ||
label: What would you like? | ||
description: A clear description of the feature or enhancement wanted. | ||
placeholder: I'd like to be able to... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reason | ||
attributes: | ||
label: Why is this needed? | ||
description: A clear description of why this would be useful to have. | ||
placeholder: I want this because... | ||
- type: textarea | ||
id: other | ||
attributes: | ||
label: Other information | ||
placeholder: Any other details? |
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,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "yarn" | ||
directories: | ||
- "." | ||
schedule: | ||
interval: "weekly" | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-major"] |
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,23 @@ | ||
<!-- Provide a general summary of your changes in the title above. --> | ||
|
||
# Description | ||
<!-- | ||
What do you want to achieve with this PR? Why did you write this code? What problem does this PR solve? | ||
Describe your changes in detail and, if relevant, explain which choices you have made and why. | ||
When making changes to the UI, make sure to include comparison screenshots! | ||
--> | ||
|
||
## Related issues/external references | ||
<!-- | ||
Format issues on GitHub as `#XXX`. Tickets from support.gewis.nl can also be auto-linked by using | ||
`ABC-YYMM-XXX`. | ||
--> | ||
|
||
## Types of changes | ||
<!-- What types of changes does your code introduce? Remove all the items that do not apply: --> | ||
- Bug fix _(non-breaking change which fixes an issue)_ | ||
- New feature _(non-breaking change which adds functionality)_ | ||
- Breaking change _(fix or feature that would cause existing functionality to change)_ | ||
- Documentation improvement | ||
- Style _(Change that do not affect the functionality of the code)_ | ||
- CI/CD _(Changes to the CI/CD configuration)_ |
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,19 @@ | ||
name: Lint and build | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
build-and-lint: | ||
uses: GEWIS/actions/.github/workflows/typescript-lint-and-build.yml@v0.0.2 | ||
with: | ||
node-version: "22.x" | ||
package-manager: "yarn" | ||
lint: true | ||
format: true | ||
build: 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Semantic release | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
semantic-release: | ||
uses: GEWIS/actions/.github/workflows/semantic-release.yml@v0.0.2 | ||
with: | ||
projects: "['.']" | ||
docker_registry: "abc.docker-registry.gewis.nl" | ||
docker_paths: "['nc/aurora/core']" | ||
secrets: | ||
REGISTRY_USERNAME: ${{ secrets.SVC_GH_ABCNC_USERNAME }} | ||
REGISTRY_PASSWORD: ${{ secrets.SVC_GH_ABCNC_PWD }} | ||
|
||
|
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
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
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
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
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,19 @@ | ||
export default { | ||
"branches": ["master"], | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/github", | ||
{ | ||
"successComment": false, | ||
"failComment": false, | ||
"failTitle": false, | ||
"labels": false, | ||
"releasedLabels": false | ||
} | ||
] | ||
] | ||
} | ||
|
||
|
Oops, something went wrong.