Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ updates:
# Python dependencies
- package-ecosystem: "pip"
directory: "/"
target-branch: "dev"
schedule:
interval: "weekly"
day: "monday"
Expand All @@ -20,6 +21,7 @@ updates:
# npm dependencies for MCP server
- package-ecosystem: "npm"
directory: "/mcp"
target-branch: "dev"
schedule:
interval: "weekly"
day: "monday"
Expand All @@ -35,6 +37,7 @@ updates:
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "dev"
schedule:
interval: "monthly"
labels:
Expand Down
18 changes: 18 additions & 0 deletions .github/scripts/create_labels.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

# Script to create GitHub labels for Dependabot
# Run this script with GitHub CLI (gh) installed and authenticated

echo "Creating GitHub labels for Dependabot..."

# Create labels with appropriate colors
gh label create dependencies --description "Dependency updates" --color "0366d6" 2>/dev/null || echo "Label 'dependencies' already exists"
gh label create javascript --description "JavaScript related changes" --color "f7df1e" 2>/dev/null || echo "Label 'javascript' already exists"
gh label create mcp --description "MCP server related" --color "008672" 2>/dev/null || echo "Label 'mcp' already exists"
gh label create python --description "Python related changes" --color "3776ab" 2>/dev/null || echo "Label 'python' already exists"
gh label create ci --description "Continuous Integration" --color "e11d21" 2>/dev/null || echo "Label 'ci' already exists"

echo "Label creation complete!"
echo ""
echo "Current labels:"
gh label list | grep -E "dependencies|javascript|mcp|python|ci"
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ keywords:
- stable-diffusion
license: MIT
version: 0.1.0
date-released: '2025-08-13'
date-released: '2025-08-13'