From 05dc5c1cf6d40a031ee220d8a70a0ec2445ac46d Mon Sep 17 00:00:00 2001 From: yusyus Date: Wed, 22 Oct 2025 23:35:47 +0300 Subject: [PATCH] Update GitHub Actions to use development branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed: - tests.yml: Run on 'development' instead of 'dev' - Triggers on push to: main, development - Triggers on PRs to: main, development This ensures: ✅ All PRs to development run tests ✅ Pushes to development run tests ✅ Branch protection can require 'Tests' check ✅ CI works with new two-branch workflow Related: Two-branch workflow setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f9b2ed3..9237351 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,9 +2,9 @@ name: Tests on: push: - branches: [ main, dev ] + branches: [ main, development ] pull_request: - branches: [ main, dev ] + branches: [ main, development ] jobs: test: