Manually Initiating CI Runs

CI/CD
Jul 17, 2025
Dan Manges
Manually Initiating CI Runs

We just shipped the ability to manually initiate CI runs on RWX. Engineering teams can decide to make CI opt-in to push code freely without overly running CI and incurring higher costs.

Use Case for Deciding When to Run

RWX runs CI/CD pipelines for large engineering organizations with massive test suites.

When an entire CI run takes 10+ cumulative hours of CPU time aggregated across all parallel tasks, engineers are usually more selective about when CI should run.

To push code freely without incurring higher CI costs, some engineering teams choose to have engineers opt-in to running CI.

Opt-out of Running CI

There are a couple of ways that RWX supports opting out of running CI.

You can annotate commit messages with [skip ci] or [skip rwx].

/bin/bash
$ git commit -m "Pushing for feedback [skip ci]"

You can also skip running for all Draft PRs:

.rwx/pull-request.yml
on:
github:
pull_request:
if: ${{ event.github.pull_request.pull_request.draft == false }}

Either of these approaches can work.

Skipping via annotating the commit message requires engineers to remember to do that though.

Similarly, skipping draft PRs requires remembering to open PRs in a draft status. Additionally, coupling CI runs to the draft status may be undesirable if teams want to use draft status for another purpose. Choosing whether CI should run and choosing whether a PR is ready for review should be independent decisions.

Opt-in to Running CI

To make CI opt-in, add start: manually to the trigger.

.rwx/pull-request.yml
on:
github:
pull_request:
start: manually

Demo

Never miss an update

Get the latest releases and news about RWX and our ecosystem with our newsletter.

Share this post

Enjoyed this post? Pleas share it on your favorite social network!

Related posts

Read more on updates and advice from the RWX engineering team

See all posts
Using an MCP Server to Fix Tests that Failed on CI
CI/CD

Using an MCP Server to Fix Tests that Failed on CI

We shipped an MCP Server via the RWX CLI. Use it to have AI fix tests that failed on CI, powered by RWX tracking test failures as a semantic output.

Aug 8, 2025
Read now
tmpfs for Super Fast Writes
CI/CD

tmpfs for Super Fast Writes

To accelerate performance in high iops scenarios like an npm install, we built support for running tasks using tmpfs.

Aug 6, 2025
Read now
RWX July 2025 Recap: ARM runners, VS Code Extension, and more
CI/CD

RWX July 2025 Recap: ARM runners, VS Code Extension, and more

In July we released ARM runners, a VS Code Extension, and an option to start runs manually. Stay tuned for progress on a new way to build container images.

Aug 4, 2025
Read now