Skip to content

Upscale node, OpenAI image edits, feature gating, workflow polish #15

Upscale node, OpenAI image edits, feature gating, workflow polish

Upscale node, OpenAI image edits, feature gating, workflow polish #15

Workflow file for this run

name: Sync main ↔ master
on:
push:
branches:
- main
- master
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Sync branches
run: |
if [ "${{ github.ref_name }}" = "main" ]; then
TARGET="master"
else
TARGET="main"
fi
git push origin HEAD:refs/heads/$TARGET