From 180d11d6500aa94b20313d2f895ff6424d6c960d Mon Sep 17 00:00:00 2001 From: Ryan Davis Date: Wed, 29 Jul 2026 22:30:46 -0700 Subject: [PATCH] ci(rbs): add reusable CI workflow for rbs Trigger builds on pull requests and pushes to main using the shared ReduxISU CI workflow with the py3.13 variant. --- .github/workflows/rbs.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/rbs.yml diff --git a/.github/workflows/rbs.yml b/.github/workflows/rbs.yml new file mode 100644 index 0000000..f4fc7e4 --- /dev/null +++ b/.github/workflows/rbs.yml @@ -0,0 +1,20 @@ +name: rbs + +on: + pull_request: + push: + branches: [main] + +permissions: + contents: read + pull-requests: write + packages: write + +concurrency: + group: rbs-${{ github.ref }} + cancel-in-progress: true + +jobs: + build-test: + uses: ReduxISU/Redux_Build_System/.github/workflows/ci.yml@main + secrets: inherit