Skip to content

Commit

Permalink
Init: 0.5.2-a2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gourieff committed Jan 17, 2025
0 parents commit ccfade1
Show file tree
Hide file tree
Showing 168 changed files with 29,786 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Bug Report
description: You think somethings is broken
labels: ["bug", "new"]

body:
- type: checkboxes
attributes:
label: First, confirm
description: Make sure you use the latest version of the ReActor extension and you have already searched to see if an issue already exists for the bug you encountered before you create a new Issue.
options:
- label: I have read the [instruction](https://github.com/Gourieff/ComfyUI-ReActor/blob/main/README.md) carefully
required: true
- label: I have searched the existing issues
required: true
- label: I have updated the extension to the latest version
required: true
- type: markdown
attributes:
value: |
*Please fill this form with as much information as possible and *provide screenshots if possible**
- type: textarea
id: what-did
attributes:
label: What happened?
description: Tell what happened in a very clear and simple way
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to reproduce the problem
description: Please provide with precise step by step instructions on how to reproduce the bug
value: |
Your workflow
validations:
required: true
- type: textarea
id: sysinfo
attributes:
label: Sysinfo
description: Describe your platform. OS, browser, GPU, what other nodes are also enabled.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant console log
description: Please provide cmd/terminal logs from the moment you started UI to the momemt you got an error. This will be automatically formatted into code, so no need for backticks.
render: Shell
validations:
required: true
- type: textarea
id: misc
attributes:
label: Additional information
description: Please provide with any relevant additional info or context.
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: ReActor Node Community Support
url: https://github.com/Gourieff/ComfyUI-ReActor/discussions
about: Please ask and answer questions here.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Feature request
description: Suggest an idea for this project
title: "[Feature]: "
labels: ["enhancement", "new"]

body:
- type: textarea
id: description
attributes:
label: Feature description
description: Describe the feature in a clear and simple way
value:
- type: markdown
attributes:
value: |
The best way to propose an idea is to start a new discussion via the [Discussions](https://github.com/Gourieff/ComfyUI-ReActor/discussions) section (choose the "Idea" category)
20 changes: 20 additions & 0 deletions .github/workflows/publish_action.yml.off
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish to Comfy registry
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "pyproject.toml"

jobs:
publish-node:
name: Publish Custom Node to registry
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Publish Custom Node
uses: Comfy-Org/publish-node-action@main
with:
personal_access_token: ${{ secrets.REGISTRY_ACCESS_TOKEN }} ## Add your own personal access token to your Github secrets and reference it here.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
__pycache__/
*$py.class
.vscode/
example
input
Loading

0 comments on commit ccfade1

Please sign in to comment.