mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
Merge branch 'master' of github.com:AnonymusRaccoon/Kyoo into library
run: git submodule update --init --recursive
This commit is contained in:
commit
ed3ede3a18
20
.github/ISSUE_TEMPLATE/bug-report.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE/bug-report.md
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Bug Report
|
||||
about: Create a bug report to help improve Kyoo
|
||||
title: "[BUG] "
|
||||
labels: bug
|
||||
---
|
||||
|
||||
**Describe the bug**
|
||||
A clear and concise description of what the bug is.
|
||||
|
||||
**To Reproduce**
|
||||
Steps to reproduce the behavior:
|
||||
1.
|
||||
|
||||
**Expected Behavior**
|
||||
A clear and concise description of what you expected to happen.
|
||||
|
||||
**Environment:**
|
||||
- Platform [e.g. Windows / Linux]
|
||||
- Action Version [e.g. v0.0.1 or a git commit's SHA]
|
18
.github/ISSUE_TEMPLATE/feature-request.md
vendored
Normal file
18
.github/ISSUE_TEMPLATE/feature-request.md
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
---
|
||||
name: Feature Request
|
||||
about: Suggest a new feature for Kyoo (don't forget to check projects first)
|
||||
title: "[FEATURE] "
|
||||
labels: enhancement
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? If yes, please describe.**
|
||||
A clear and concise description of what the problem is.
|
||||
|
||||
**Describe the feature you'd like**
|
||||
A clear and concise description of what you want Kyoo to have.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
21
.github/PULL_REQUEST_TEMPLATE/bug-fix.md
vendored
Normal file
21
.github/PULL_REQUEST_TEMPLATE/bug-fix.md
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
name: Bug Fix
|
||||
about: Propose code for a bug fix
|
||||
title: "[BUG] "
|
||||
labels: bug
|
||||
---
|
||||
|
||||
## Proposed changes
|
||||
|
||||
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request.
|
||||
If it fixes a bug or resolves a feature request, be sure to link to that issue.
|
||||
|
||||
## Checklist
|
||||
|
||||
- [ ] I have added tests that prove my fix is effective or that my feature works
|
||||
- [ ] I have added necessary documentation (if appropriate)
|
||||
|
||||
## Further comments
|
||||
|
||||
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did
|
||||
and what alternatives you considered, etc...
|
27
.github/PULL_REQUEST_TEMPLATE/feature-proposal.md
vendored
Normal file
27
.github/PULL_REQUEST_TEMPLATE/feature-proposal.md
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
---
|
||||
name: Feature Proposal
|
||||
about: Propose code for a new feature of Kyoo
|
||||
title: "[FEATURE] "
|
||||
labels: enhancement
|
||||
---
|
||||
|
||||
## Proposed changes
|
||||
|
||||
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request.
|
||||
If it fixes a bug or resolves a feature request, be sure to link to that issue.
|
||||
|
||||
## Informations
|
||||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
||||
- [ ] New public API added
|
||||
- [ ] Non-breaking changes
|
||||
|
||||
## Checklist
|
||||
|
||||
- [ ] I have added tests that prove my fix is effective or that my feature works
|
||||
- [ ] I have added necessary documentation (if appropriate)
|
||||
|
||||
## Further comments
|
||||
|
||||
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did
|
||||
and what alternatives you considered, etc...
|
||||
|
21
.github/PULL_REQUEST_TEMPLATE/webapp.md
vendored
Normal file
21
.github/PULL_REQUEST_TEMPLATE/webapp.md
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
---
|
||||
name: Feature Proposal
|
||||
about: Propose code for a change on the webapp of Kyoo
|
||||
title: "[WEBAPP] "
|
||||
labels: webapp
|
||||
---
|
||||
|
||||
## Kyoo.WebApp Pull Request
|
||||
|
||||
Please link a pull request from the [Kyoo.WebApp](https://github.com/AnonymusRaccoon/Kyoo.WebApp) repository, this pull request should
|
||||
only be a shortcut to the one on this repository to inform users of changes.
|
||||
|
||||
## Proposed changes
|
||||
|
||||
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request.
|
||||
|
||||
## Further comments
|
||||
|
||||
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did
|
||||
and what alternatives you considered, etc...
|
||||
|
2
.github/workflows/docker.yml
vendored
2
.github/workflows/docker.yml
vendored
@ -18,8 +18,6 @@ jobs:
|
||||
tags: |
|
||||
type=ref,event=tag
|
||||
type=ref,event=branch
|
||||
type=ref,event=pr
|
||||
type=sha,prefix=
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
- name: Set up Docker Buildx
|
||||
|
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@ -14,11 +14,12 @@ jobs:
|
||||
- name: Set commit environment
|
||||
run: echo "COMMIT_SHA=$(git rev-list -n 1 ${{github.ref}})" >> $GITHUB_ENV
|
||||
- name: Wait for builds & tests to finish
|
||||
uses: lewagon/wait-on-check-action@v0.2
|
||||
uses: lewagon/wait-on-check-action@master
|
||||
with:
|
||||
ref: ${{github.ref}}
|
||||
repo-token: ${{secrets.GITHUB_TOKEN}}
|
||||
running-workflow-name: release
|
||||
allowed-conclusions: success,skipped,cancelled,neutral
|
||||
- name: Generate changelog
|
||||
uses: mikepenz/release-changelog-builder-action@v1
|
||||
env:
|
||||
@ -36,6 +37,7 @@ jobs:
|
||||
with:
|
||||
PROJECT_FILE_PATH: Kyoo.Common/Kyoo.Common.csproj
|
||||
PACKAGE_NAME: Kyoo.Common
|
||||
VERSION_REGEX: ^\s*<PackageVersion>(.*)<\/PackageVersion>\s*$
|
||||
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
|
||||
INCLUDE_SYMBOLS: true
|
||||
- name: Create Release
|
||||
@ -44,5 +46,5 @@ jobs:
|
||||
draft: true
|
||||
release_name: ${{github.ref}}
|
||||
body: ${{steps.github_release.outputs.changelog}}
|
||||
arficats: ./artifacts/**/*
|
||||
artifacts: ./artifacts/**/*
|
||||
token: ${{secrets.GITHUB_TOKEN}}
|
||||
|
@ -2,11 +2,11 @@
|
||||
"categories": [
|
||||
{
|
||||
"title": "## Features",
|
||||
"labels": ["feature"]
|
||||
"labels": ["enhancement"]
|
||||
},
|
||||
{
|
||||
"title": "## Fixes",
|
||||
"labels": ["fix"]
|
||||
"labels": ["bug"]
|
||||
},
|
||||
{
|
||||
"title": "## Web App",
|
||||
|
Loading…
x
Reference in New Issue
Block a user