Skip to content

Commit

Permalink
chore: run copier update (#672)
Browse files Browse the repository at this point in the history
  • Loading branch information
34j authored May 20, 2023
1 parent 330ad80 commit 8c5321f
Show file tree
Hide file tree
Showing 10 changed files with 139 additions and 35 deletions.
13 changes: 6 additions & 7 deletions .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
# Changes here will be overwritten by Copier
_commit: 2b33a13
_commit: d5acceb
_src_path: gh:34j/pypackage-template-fork
add_me_as_contributor: true
add_me_as_contributor: false
copyright_year: '2023'
documentation: true
email: [email protected]
full_name: 34j
github_username: 34j
initial_commit: true
initial_commit: false
open_source_license: MIT
open_with_vscode: true
open_with_vscode: false
package_name: so_vits_svc_fork
project_name: SoftVC VITS Singing Voice Conversion Fork
project_short_description: A fork of so-vits-svc.
project_slug: so-vits-svc-fork
run_poetry_install: true
setup_github: true
setup_pre_commit: true
setup_github: false
setup_pre_commit: false
setup_venv: true
venv_version: '3.10'

Empty file added .github/CODE_OF_CONDUCT.md
Empty file.
14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/1-bug_report.md

This file was deleted.

36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/1-bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Bug report
description: Create a report to help us improve
labels: [bug]
body:
- type: textarea
id: description
attributes:
label: Describe the bug
description: A clear and concise description of what the bug is.
placeholder: Describe the bug
- type: textarea
id: reproduce
attributes:
label: To Reproduce
description: Steps to reproduce the behavior.
placeholder: To Reproduce
- type: textarea
id: context
attributes:
label: Additional context
description: Add any other context about the problem here.
placeholder: Additional context
- type: checkboxes
id: terms
attributes:
- label: Code of Conduct
description: By submitting this issue, you agree to follow our
[Code of Conduct](https://github.com/34j/so-vits-svc-fork/blob/main/CODE_OF_CONDUCT.md).
options:
- label: I agree to follow this project's Code of Conduct.
required: true
- label: No Duplicate
description: Please check [existing issues](https://github.com/34j/so-vits-svc-fork/issues) to avoid duplicates.
options:
- label: I have checked existing issues to avoid duplicates.
required: true
14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/2-feature-request.md

This file was deleted.

31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/2-feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Feature request
description: Suggest an idea for this project
labels: [enhancement]
body:
- type: textarea
id: description
attributes:
label: Is your feature request related to a problem? Please describe.
description: A clear and concise description of what the problem is.
placeholder: I'm always frustrated when [...]
- type: textarea
id: solution
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
placeholder: Describe alternatives you've considered
- type: textarea
id: context
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
placeholder: Additional context
- type: checkboxes
id: terms
attributes:
label: Code of Conduct
description: By submitting this issue, you agree to follow our
[Code of Conduct](https://github.com/34j/so-vits-svc-fork/blob/main/CODE_OF_CONDUCT.md).
options:
- label: I agree to follow this project's Code of Conduct
required: true
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Discussions
url: https://github.com/34j/so-vits-svc-fork/discussions
about: Please ask and answer questions here.
49 changes: 49 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!--
😀 Wonderful! Thank you for opening a pull request.
Please fill in the information below to expedite the review
and (hopefully) merge of your change.
-->

### Description of change

<!--
First, have Copilot write it down.
-->

copilot:all

<!--
Please be clear and concise what the change is intended to do,
why this change is needed, and how you've verified that it
corrects what you intended.
In some cases it may be helpful to include the current behavior
and the new behavior.
If the change is related to an open issue, you can link it here.
If you include `Fixes #0000` (replacing `0000` with the issue number)
when this is merged it will automatically mark the issue as fixed and
close it.
-->

### Pull-Request Checklist

<!--
Please make sure to review and check all of the following.
If an item is not applicable, you can add "N/A" to the end.
-->

- [ ] Code is up-to-date with the `main` branch
- [ ] This pull request follows [Contributing.md](https://github.com/34j/so-vits-svc-fork/blob/main/CONTRIBUTING.md)
- [ ] This pull request links relevant issues as `Fixes #0000`
- [ ] `pre-commit run -a` passes with this change or ci passes
- [ ] `poetry run pytest` passes with this change or ci passes
- [ ] (There are new or updated unit tests validating the change)
- [ ] Documentation has been updated to reflect this change
- [ ] The new commits follow conventions outlined in the [conventional commit spec](https://www.conventionalcommits.org/en/v1.0.0/)

<!--
🎉 Thank you for contributing!
-->
Empty file added .github/SECURITY.md
Empty file.
12 changes: 12 additions & 0 deletions .github/workflows/poetry-upgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Upgrader

on:
workflow_dispatch:
schedule:
- cron: "29 23 16 * *"

jobs:
upgrade:
uses: browniebroke/github-actions/.github/workflows/poetry-upgrade.yml@v1
secrets:
gh_pat: ${{ secrets.GH_PAT }}

0 comments on commit 8c5321f

Please sign in to comment.