forked from sovity/edc-ce
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Templates: synced file(s) with sovity/PMO-Software (sovity#755)
- Loading branch information
Showing
4 changed files
with
106 additions
and
9 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,48 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
title: "" | ||
labels: "kind/bug" | ||
assignees: "" | ||
--- | ||
|
||
# Bug Report | ||
|
||
## Description | ||
<!-- A clear and concise description of the bug. --> | ||
<!-- If applicable, add screenshots or other information to help explain your problem. --> | ||
|
||
### Expected Behavior | ||
<!-- A clear and concise description of what you expected to happen. --> | ||
|
||
### Observed Behavior | ||
<!-- A clear and concise description of what happened instead. --> | ||
|
||
## Steps to Reproduce | ||
<!-- Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
--> | ||
|
||
## Context Information | ||
<!-- Add any other context about the problem here. | ||
- Environment: Which instance or deployment were you using when the error occurred? Staging, Productive, Connector-URL, etc.? | ||
- Used version: If a specific component was used, which Version did you use? E.g. EDC v1.0.0 | ||
- Time: When did the error occur? Exact timestamp (incl. time zone; assumed CET/CEST if missing) if possible. | ||
- Logs: Error log or further information | ||
- Parameter: Request contents or information entered | ||
- OS: [e.g. iOS, Windows] | ||
- ... | ||
--> | ||
|
||
## Possible Implementation and Work Breakdown | ||
<!-- You already know the root cause of the erroneous state and how to fix it? Feel free to share your thoughts and edit the tasklist. --> | ||
|
||
```[tasklist] | ||
- [ ] adjust the labels, sprint and other metadata | ||
- [ ] refine a solution proposal / work breakdown | ||
``` |
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 |
---|---|---|
@@ -1,10 +1,43 @@ | ||
_What issues does this PR close?_ | ||
# Pull Request | ||
|
||
_Briefly describe WHAT your PR changes, which features it adds/modifies._ | ||
|
||
```[tasklist] | ||
### Checklist | ||
- [ ] The PR title is short and expressive. | ||
- [ ] I have updated the CHANGELOG.md. See [changelog_update.md](https://github.com/sovity/authority-portal/tree/main/docs/dev/changelog_updates.md) for more information. | ||
- [ ] I have updated the Deployment Migration Notes Section in the CHANGELOG.md for any configuration / external API changes. | ||
- [ ] I have performed a **self-review** | ||
``` | ||
## How Has This Been Tested? | ||
|
||
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration | ||
|
||
- Test A | ||
- Test B | ||
- ... | ||
|
||
**Test Configuration**: | ||
|
||
- Firmware version: | ||
- Hardware: | ||
- Toolchain: | ||
- SDK: | ||
|
||
## Linked Issue(s) | ||
|
||
_Use keywords to automate: https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword_ | ||
|
||
- fixes # (issue) | ||
- closes # (issue) | ||
- ... | ||
|
||
## PR is blocked by | ||
|
||
- [ ] blocked by # (issue) | ||
|
||
# Checklist | ||
|
||
- [ ] I have **formatted the title** correctly and precisely | ||
- [ ] My code follows the **style guidelines** of this project | ||
- [ ] I have performed a **self-review** of my own code | ||
- [ ] I have **commented** my code, particularly in hard-to-understand areas and public classes/methods | ||
- [ ] I have made corresponding changes to the **documentation** | ||
- [ ] My changes generate **no new warnings** (performed checkstyle check locally) | ||
- [ ] I have added **tests that prove my fix** is effective or that my feature works | ||
- [ ] New and existing unit **tests pass locally** with my changes | ||
- [ ] Any dependent **changes have been merged** and published in downstream modules | ||
- [ ] I have added/updated **copyright headers** |
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,17 @@ | ||
name: Add pull request to project action | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
add_pullrequest_to_project: | ||
if: github.actor != 'dependabot' && github.actor != 'sovitybot' # ignore PRs from bots | ||
name: add_pullrequest_to_project | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/sovity/projects/9 | ||
github-token: ${{ secrets.ADD_ISSUE_TO_PROJECT_PAT }} | ||
labeled: area/dependency | ||
label-operator: NOT |