From 06db8c6c162b6d6193bbb3248575fcf3546a5063 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 22 Dec 2025 01:27:46 +0900 Subject: [PATCH] ci: trigger CI on both master and dev branches, update draft-release to run on dev only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix draft release workflow so 'Upcoming Changes' draft release is updated on dev push, not master. Previously it was only updated on master push which caused the draft release to show stale/empty content after publish. 🤖 Generated with assistance of OhMyOpenCode (https://github.com/code-yeongyu/oh-my-opencode) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ced1b7..64ef5b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [master] + branches: [master, dev] pull_request: branches: [master] @@ -88,7 +88,7 @@ jobs: draft-release: runs-on: ubuntu-latest needs: [build] - if: github.event_name == 'push' && github.ref == 'refs/heads/master' + if: github.event_name == 'push' && github.ref == 'refs/heads/dev' permissions: contents: write steps: