Skip to content

Commit

Permalink
Merge branch 'develop' into feature/AY-971_Use-custom-staging-dir-fun…
Browse files Browse the repository at this point in the history
…ction-for-Nuke-creators
  • Loading branch information
robin-ynput committed Nov 25, 2024
2 parents 3b0adb5 + 1cf07f8 commit 270f766
Show file tree
Hide file tree
Showing 16 changed files with 512 additions and 117 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/assign_pr_to_project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 🔸Auto assign pr
on:
pull_request:
types:
- opened

jobs:
auto-assign-pr:
uses: ynput/ops-repo-automation/.github/workflows/pr_to_project.yml@develop
with:
repo: "${{ github.repository }}"
project_id: 16
pull_request_number: ${{ github.event.pull_request.number }}
secrets:
token: ${{ secrets.YNPUT_BOT_TOKEN }}
13 changes: 13 additions & 0 deletions .github/workflows/release_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,23 @@ name: 🚀 Release Trigger

on:
workflow_dispatch:
inputs:
draft:
type: boolean
description: "Create Release Draft"
required: false
default: false
release_overwrite:
type: string
description: "Set Version Release Tag"
required: false

jobs:
call-release-trigger:
uses: ynput/ops-repo-automation/.github/workflows/release_trigger.yml@main
with:
draft: ${{ inputs.draft }}
release_overwrite: ${{ inputs.release_overwrite }}
secrets:
token: ${{ secrets.YNPUT_BOT_TOKEN }}
email: ${{ secrets.CI_EMAIL }}
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/upload_to_ynput_cloud.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 📤 Upload to Ynput Cloud

on:
workflow_dispatch:
release:
types: [published]

jobs:
call-upload-to-ynput-cloud:
uses: ynput/ops-repo-automation/.github/workflows/upload_to_ynput_cloud.yml@main
secrets:
CI_EMAIL: ${{ secrets.CI_EMAIL }}
CI_USER: ${{ secrets.CI_USER }}
YNPUT_BOT_TOKEN: ${{ secrets.YNPUT_BOT_TOKEN }}
YNPUT_CLOUD_URL: ${{ secrets.YNPUT_CLOUD_URL }}
YNPUT_CLOUD_TOKEN: ${{ secrets.YNPUT_CLOUD_TOKEN }}
18 changes: 18 additions & 0 deletions .github/workflows/validate_pr_labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: 🔎 Validate PR Labels
on:
pull_request:
types:
- opened
- edited
- labeled
- unlabeled

jobs:
validate-type-label:
uses: ynput/ops-repo-automation/.github/workflows/validate_pr_labels.yml@develop
with:
repo: "${{ github.repository }}"
pull_request_number: ${{ github.event.pull_request.number }}
query_prefix: "type: "
secrets:
token: ${{ secrets.YNPUT_BOT_TOKEN }}
3 changes: 2 additions & 1 deletion client/ayon_nuke/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def add_implementation_envs(self, env, _app):

# Set default values if are not already set via settings
defaults = {
"LOGLEVEL": "DEBUG"
"LOGLEVEL": "DEBUG",
"AYON_LOG_NO_COLORS": "1",
}
for key, value in defaults.items():
if not env.get(key):
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_nuke/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
create_write_node,
link_knobs
)
from .utils import (
from .colorspace import (
colorspace_exists_on_node,
get_colorspace_list
)
Expand Down
Loading

0 comments on commit 270f766

Please sign in to comment.