Merge branch 'main' into refactor/nodes-on-generator

This commit is contained in:
Lincoln Stein 2023-03-11 21:31:42 -05:00 committed by GitHub
commit 1f3c024d9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 10 deletions

View File

@ -24,3 +24,4 @@ jobs:
days-before-pr-stale: -1 days-before-pr-stale: -1
days-before-pr-close: -1 days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }} repo-token: ${{ secrets.GITHUB_TOKEN }}
operations-per-run: 500

View File

@ -1,12 +1,12 @@
name: Test invoke.py pip name: Test invoke.py pip
on: on:
pull_request: pull_request:
paths-ignore: paths:
- 'pyproject.toml' - '**'
- 'invokeai/**' - '!pyproject.toml'
- 'invokeai/backend/**' - '!invokeai/**'
- 'invokeai/configs/**' - 'invokeai/frontend/web/**'
- 'invokeai/frontend/web/dist/**' - '!invokeai/frontend/web/dist/**'
merge_group: merge_group:
workflow_dispatch: workflow_dispatch:

View File

@ -6,15 +6,13 @@ on:
paths: paths:
- 'pyproject.toml' - 'pyproject.toml'
- 'invokeai/**' - 'invokeai/**'
- 'invokeai/backend/**' - '!invokeai/frontend/web/**'
- 'invokeai/configs/**'
- 'invokeai/frontend/web/dist/**' - 'invokeai/frontend/web/dist/**'
pull_request: pull_request:
paths: paths:
- 'pyproject.toml' - 'pyproject.toml'
- 'invokeai/**' - 'invokeai/**'
- 'invokeai/backend/**' - '!invokeai/frontend/web/**'
- 'invokeai/configs/**'
- 'invokeai/frontend/web/dist/**' - 'invokeai/frontend/web/dist/**'
types: types:
- 'ready_for_review' - 'ready_for_review'