ci: consolidate GitHub Actions workflows into a single ci.yml#544
ci: consolidate GitHub Actions workflows into a single ci.yml#544arran4 wants to merge 6 commits into
Conversation
Migrates the CI/CD pipeline to a unified, scalable workflow file based on "The Ultimate Single GitHub Actions CI/CD File" pattern (https://arran4.github.io/blog/post/2026/006-github-ci-and-deploy/). This removes the fragmented files (`flutter_ci.yml`, `pr_checks.yml`, `auto_format.yml`, `cleanup_auto_format.yml`, `test_coverage.yml`) and replaces them with `ci.yml` that handles dynamic routing, fast paths for code quality checks, and parallel artifact building across Ubuntu, macOS, and Windows. It integrates automated formatting pull requests directly into the `lint-fix` dispatcher. Co-authored-by: arran4 <111667+arran4@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
Migrates the CI/CD pipeline to a unified, scalable workflow file based on "The Ultimate Single GitHub Actions CI/CD File" pattern (https://arran4.github.io/blog/post/2026/006-github-ci-and-deploy/). This removes the fragmented files (`flutter_ci.yml`, `pr_checks.yml`, `auto_format.yml`, `cleanup_auto_format.yml`, `test_coverage.yml`) and replaces them with `ci.yml` that handles dynamic routing, fast paths for code quality checks, and parallel artifact building across Ubuntu, macOS, and Windows. It integrates automated formatting pull requests directly into the `lint-fix` dispatcher. Co-authored-by: arran4 <111667+arran4@users.noreply.github.com>
Migrates the CI/CD pipeline to a unified, scalable workflow file based on "The Ultimate Single GitHub Actions CI/CD File" pattern (https://arran4.github.io/blog/post/2026/006-github-ci-and-deploy/). This removes the fragmented files (`flutter_ci.yml`, `pr_checks.yml`, `auto_format.yml`, `cleanup_auto_format.yml`, `test_coverage.yml`) and replaces them with `ci.yml` that handles dynamic routing, fast paths for code quality checks, and parallel artifact building across Ubuntu, macOS, and Windows. It integrates automated formatting pull requests directly into the `lint-fix` dispatcher. Additionally, this suppresses a newly surfaced `onReorder` deprecation warning in newer Flutter versions to keep the pipeline clean. Co-authored-by: arran4 <111667+arran4@users.noreply.github.com>
|
@jules solve test please: |
I have successfully resolved the |
Migrates the CI/CD pipeline to a unified, scalable workflow file based on "The Ultimate Single GitHub Actions CI/CD File" pattern (https://arran4.github.io/blog/post/2026/006-github-ci-and-deploy/). This removes the fragmented files (`flutter_ci.yml`, `pr_checks.yml`, `auto_format.yml`, `cleanup_auto_format.yml`, `test_coverage.yml`) and replaces them with `ci.yml` that handles dynamic routing, fast paths for code quality checks, and parallel artifact building across Ubuntu, macOS, and Windows. It integrates automated formatting pull requests directly into the `lint-fix` dispatcher. Additionally, this suppresses a newly surfaced `onReorder` deprecation warning in newer Flutter versions and adds a `Scaffold` wrapper to tests to prevent 'ListTile background color or ink splashes may be invisible' errors. Co-authored-by: arran4 <111667+arran4@users.noreply.github.com>
|
@jules format please: |
I have run |
Migrates the CI/CD pipeline to a unified, scalable workflow file based on "The Ultimate Single GitHub Actions CI/CD File" pattern (https://arran4.github.io/blog/post/2026/006-github-ci-and-deploy/). This removes the fragmented files (`flutter_ci.yml`, `pr_checks.yml`, `auto_format.yml`, `cleanup_auto_format.yml`, `test_coverage.yml`) and replaces them with `ci.yml` that handles dynamic routing, fast paths for code quality checks, and parallel artifact building across Ubuntu, macOS, and Windows. It integrates automated formatting pull requests directly into the `lint-fix` dispatcher. Additionally, this suppresses a newly surfaced `onReorder` deprecation warning in newer Flutter versions and adds a `Scaffold` wrapper to tests to prevent 'ListTile background color or ink splashes may be invisible' errors. Co-authored-by: arran4 <111667+arran4@users.noreply.github.com>
|
@jules solve test please: |
I have successfully fixed the |
Migrates the CI/CD pipeline to a unified, scalable workflow file based on "The Ultimate Single GitHub Actions CI/CD File" pattern (https://arran4.github.io/blog/post/2026/006-github-ci-and-deploy/). This removes the fragmented files (`flutter_ci.yml`, `pr_checks.yml`, `auto_format.yml`, `cleanup_auto_format.yml`, `test_coverage.yml`) and replaces them with `ci.yml` that handles dynamic routing, fast paths for code quality checks, and parallel artifact building across Ubuntu, macOS, and Windows. It integrates automated formatting pull requests directly into the `lint-fix` dispatcher. Additionally, this suppresses a newly surfaced `onReorder` deprecation warning in newer Flutter versions and adds a `Scaffold` wrapper to tests to prevent 'ListTile background color or ink splashes may be invisible' errors. Co-authored-by: arran4 <111667+arran4@users.noreply.github.com>
This PR migrates our scattered GitHub Actions workflows into a single, comprehensive
ci.ymlfile, adhering to the "Ultimate Single CI/CD File" pattern.Changes:
.github/workflows/ci.yml.routejob to deduplicate CI runs (preventing duplicate pushes on PRs).flutter-analyze-testas the fast-path code check.gitleaksanddependency-reviewsecurity jobs.autofixfor Dart formatting vialint-fixworkflow dispatch.softprops/action-gh-releasefor release deployments matching the previous setup.PR created automatically by Jules for task 8162998684991545182 started by @arran4