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
ARM Architecture Now Available
CI/CD

ARM Architecture Now Available

We just shipped support for running Arm64 on RWX. Building Arm containers 10x faster without emulation.

Jul 21, 2025
Read now
Programmatically Setting Secrets with the Vault API
CI/CD

Programmatically Setting Secrets with the Vault API

We just shipped an API endpoint to set vault secrets. Programmatically setting secrets is especially useful for automating secret rotation.

Jul 18, 2025
Read now
Support for Multiple Operating Systems, without Defaults or Boilerplate
CI/CD

Support for Multiple Operating Systems, without Defaults or Boilerplate

We recently shipped support for specifying the operating system for RWX runs. We did it without having defaults, or requiring boilerplate.

Jul 16, 2025
Read now