Compare commits
1 Commits
main
...
updateWord
Author | SHA1 | Date | |
---|---|---|---|
90a75233b1 |
10
.gitea/ISSUE_TEMPLATE.md
Normal file
10
.gitea/ISSUE_TEMPLATE.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
name: 'Default'
|
||||||
|
about: 'Use this template if nothing seems to work.'
|
||||||
|
title: ':question: '
|
||||||
|
labels:
|
||||||
|
- question
|
||||||
|
---
|
||||||
|
#### :grey_question: Simply ask your question here: :grey_question:
|
||||||
|
|
||||||
|
<!-- Take your time an think about your problem.... -->
|
@ -1,17 +0,0 @@
|
|||||||
name: Default
|
|
||||||
about: Use this template if nothing seems to work.
|
|
||||||
title: ''
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
> [!NOTE]
|
|
||||||
> Thanks for taking the time to fill out this bug report!
|
|
||||||
- type: textarea
|
|
||||||
id: content
|
|
||||||
attributes:
|
|
||||||
label: ❔ What happened
|
|
||||||
description: Simply ask your question here.
|
|
||||||
placeholder: Tell us what you want to know...
|
|
||||||
validations:
|
|
||||||
required: true
|
|
48
.gitea/ISSUE_TEMPLATE/Bug.md
Normal file
48
.gitea/ISSUE_TEMPLATE/Bug.md
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
---
|
||||||
|
name: 'Bug'
|
||||||
|
about: 'This template is used to report bugs!'
|
||||||
|
title: ':lady_beetle: '
|
||||||
|
labels:
|
||||||
|
- bug
|
||||||
|
---
|
||||||
|
<!--
|
||||||
|
This bug report is ony for content provided in this repository!
|
||||||
|
|
||||||
|
- Make sure you're able to reproduce the error in the latest version of this package.
|
||||||
|
- Search of already existing issues.
|
||||||
|
- Refer to the known issues and FAQ section.
|
||||||
|
-->
|
||||||
|
|
||||||
|
#### :bomb: Steps to reproduce
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
#### :rocket: Expected behavior
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
#### :boom: Actual behavior
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
#### :notebook: Environment data
|
||||||
|
|
||||||
|
<!-- You can add additional environment data here--->
|
||||||
|
|
||||||
|
```bash
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
#### :framed_picture: Screenshots
|
||||||
|
|
||||||
|
<!-- Paste your screenshots here. -->
|
||||||
|
|
||||||
|
#### :bookmark: Refs
|
||||||
|
|
||||||
|
<!-- A place for additional references to other issues and PRs -->
|
@ -1,70 +0,0 @@
|
|||||||
name: 🐞 Bug Report
|
|
||||||
about: This template is used to report bugs!
|
|
||||||
title: ''
|
|
||||||
labels:
|
|
||||||
- bug
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
> [!NOTE]
|
|
||||||
> This bug report is only for content provided in this repository!
|
|
||||||
>
|
|
||||||
> - Make sure you're able to reproduce the error in the lastest version of this package.
|
|
||||||
> - Search of already existing issues.
|
|
||||||
> - Refer to the known issues and FAQ section.
|
|
||||||
- type: textarea
|
|
||||||
id: reproduce
|
|
||||||
attributes:
|
|
||||||
label: 💣 Steps to reproduce
|
|
||||||
description: Describe ho to reproduce the error.
|
|
||||||
value: |
|
|
||||||
```bash
|
|
||||||
|
|
||||||
```
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: expected
|
|
||||||
attributes:
|
|
||||||
label: 🚀 Expected behavior
|
|
||||||
description: Describe what should happen.
|
|
||||||
value: |
|
|
||||||
```bash
|
|
||||||
|
|
||||||
```
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: actual
|
|
||||||
attributes:
|
|
||||||
label: 💥 Actual behavior
|
|
||||||
description: Describe what actually happens.
|
|
||||||
value: |
|
|
||||||
```bash
|
|
||||||
|
|
||||||
```
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: env
|
|
||||||
attributes:
|
|
||||||
label: 📓 Environment data
|
|
||||||
description: You can add additional environment data here.
|
|
||||||
placeholder: |
|
|
||||||
```bash
|
|
||||||
|
|
||||||
```
|
|
||||||
- type: textarea
|
|
||||||
id: img
|
|
||||||
attributes:
|
|
||||||
label: 🖼️ Screenshots
|
|
||||||
description: Paste your screenshots here.
|
|
||||||
placeholder: Copy-Paste or Drag-and-Drop your images...
|
|
||||||
- type: textarea
|
|
||||||
id: refs
|
|
||||||
attributes:
|
|
||||||
label: 🔖 Refs
|
|
||||||
description: A place for additional references to other issues and PRs.
|
|
||||||
placeholder: |
|
|
||||||
- reopens #999
|
|
16
.gitea/ISSUE_TEMPLATE/Enhancement.md
Normal file
16
.gitea/ISSUE_TEMPLATE/Enhancement.md
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
name: 'Enhancement'
|
||||||
|
about: 'Wite about new features.'
|
||||||
|
title: ':flying_saucer: '
|
||||||
|
labels:
|
||||||
|
- issue/enhancement
|
||||||
|
---
|
||||||
|
<!-- This issue template is used to describe whished features. -->
|
||||||
|
|
||||||
|
#### :satellite: Suggestion
|
||||||
|
|
||||||
|
#### :artificial_satellite: Implementation ideas
|
||||||
|
|
||||||
|
#### :framed_picture: Mock-up Images
|
||||||
|
|
||||||
|
#### :bookmark: Refs.
|
@ -1,47 +0,0 @@
|
|||||||
name: 🛸 Feature Request
|
|
||||||
about: Wite about new features.
|
|
||||||
title: ''
|
|
||||||
labels:
|
|
||||||
- feature
|
|
||||||
- enhancement
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
> [!NOTE]
|
|
||||||
> This bug report is only for content provided in this repository!
|
|
||||||
>
|
|
||||||
> This issue template is used to describe new features or enhancements.
|
|
||||||
- type: textarea
|
|
||||||
id: idea
|
|
||||||
attributes:
|
|
||||||
label: 📡 Suggestion
|
|
||||||
description: Describe ho to reproduce the error.
|
|
||||||
value: |
|
|
||||||
```bash
|
|
||||||
|
|
||||||
```
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: impl
|
|
||||||
attributes:
|
|
||||||
label: 🛰️ Implementation ideas
|
|
||||||
description: Describe your initial implementation ideas.
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: mockup
|
|
||||||
attributes:
|
|
||||||
label: 🖼️ Mock-up
|
|
||||||
description: Alternatively add your mockups here.
|
|
||||||
placeholder: Copy-Paste or Drag-and-Drop your images...
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: refs
|
|
||||||
attributes:
|
|
||||||
label: 🔖 Refs
|
|
||||||
description: A place for additional references to other issues and PRs.
|
|
||||||
placeholder: |
|
|
||||||
- reopens #999
|
|
@ -1,19 +0,0 @@
|
|||||||
name: ❓ Question
|
|
||||||
about: Use this template if nothing seems to work.
|
|
||||||
title: ''
|
|
||||||
labels:
|
|
||||||
- question
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
> [!NOTE]
|
|
||||||
> Thanks for taking the time to fill out this bug report!
|
|
||||||
- type: textarea
|
|
||||||
id: content
|
|
||||||
attributes:
|
|
||||||
label: ❔ What happened
|
|
||||||
description: Simply ask your question here.
|
|
||||||
placeholder: Tell us what you want to know...
|
|
||||||
validations:
|
|
||||||
required: true
|
|
19
.gitea/PULL_REQUEST_TEMPLATE.md
Normal file
19
.gitea/PULL_REQUEST_TEMPLATE.md
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
#### :book: Summary
|
||||||
|
|
||||||
|
<!-- Provide a summary of your changes. Describe the why and not how. -->
|
||||||
|
|
||||||
|
#### :bookmark_tabs: Test Plan
|
||||||
|
|
||||||
|
> :bulb: Select your test plan for the code changes.
|
||||||
|
|
||||||
|
- [x] CI pipeline
|
||||||
|
- [ ] Custom test
|
||||||
|
- [ ] No test plan
|
||||||
|
|
||||||
|
##### Details / Justification
|
||||||
|
|
||||||
|
<!-- Add your test details or justification for missing tests here. -->
|
||||||
|
|
||||||
|
#### :books: Additional Notes
|
||||||
|
|
||||||
|
<!-- A place for additional detail notes. -->
|
@ -1,42 +0,0 @@
|
|||||||
name: Pull Request
|
|
||||||
about: General pull request
|
|
||||||
title: ""
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
> [!NOTE]
|
|
||||||
> Thanks for contributing to this project with your pull request!
|
|
||||||
|
|
||||||
- type: textarea
|
|
||||||
id: summary
|
|
||||||
attributes:
|
|
||||||
label: 📖 Summary
|
|
||||||
description: Provide a summary of your changes. Also describe the why...
|
|
||||||
placeholder: Tell us about your code changes.
|
|
||||||
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: dropdown
|
|
||||||
id: testplan
|
|
||||||
attributes:
|
|
||||||
label: 📑 Test Plan
|
|
||||||
description: How did you test your code changes?
|
|
||||||
options:
|
|
||||||
- ✅ CI pipeline tests (Default)
|
|
||||||
- 🤔 Custom test
|
|
||||||
- 💣 No test Plan
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: details
|
|
||||||
attributes:
|
|
||||||
label: 💬 Details
|
|
||||||
description: Add your custom test details or justification for missing tests here.
|
|
||||||
placeholder: First, solve the problem. Then, write the code.
|
|
||||||
- type: textarea
|
|
||||||
id: notes
|
|
||||||
attributes:
|
|
||||||
label: 📚 Additional Notes
|
|
||||||
description: A place for additional notes or linking references.
|
|
||||||
placeholder: Software and cathedrals are much the same - First we build them, then we pray.
|
|
@ -6,7 +6,7 @@ log2 = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C
|
|||||||
|
|
||||||
# Aliases for a Phabricator inspired workflow
|
# Aliases for a Phabricator inspired workflow
|
||||||
# 1. Create new feature branch
|
# 1. Create new feature branch
|
||||||
feature = "!f(){ b=$1; git checkout main; git pull; git checkout -b "$b" main; };f"
|
feature = "!f(){ b=$1; git checkout master; git pull; git checkout -b "$b" master; };f"
|
||||||
|
|
||||||
# 2. Working with code
|
# 2. Working with code
|
||||||
wip = !"git add -A; git commit -m '[WIP]'"
|
wip = !"git add -A; git commit -m '[WIP]'"
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://gitea.ocram85.com/${REPO_OWNER}/${REPO_NAME}/">
|
<a href="https://gitea.ocram85.com/${REPO_OWNER}/${REPO_NAME}/">
|
||||||
<img
|
<img
|
||||||
src="${REPO_LINK}/raw/branch/main/assets/social-logo.png"
|
src="${REPO_LINK}/raw/branch/master/assets/social-logo.png"
|
||||||
alt="${REPO_NAME}"
|
alt="${REPO_NAME}"
|
||||||
>
|
>
|
||||||
</a>
|
</a>
|
||||||
@ -21,8 +21,8 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://ci.ocram85.com/${REPO_OWNER}/${REPO_NAME}">
|
<a href="https://drone.ocram85.com/${REPO_OWNER}/${REPO_NAME}">
|
||||||
<img src="https://ci.ocram85.com/api/badges/${REPO_OWNER}/${REPO_NAME}/status.svg" alt="Main Branch Build Status">
|
<img src="https://drone.ocram85.com/api/badges/${REPO_OWNER}/${REPO_NAME}/status.svg" alt="Master Branch Build Status">
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user