summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/beta.yml
diff options
context:
space:
mode:
authorDax <[email protected]>2026-01-29 15:02:36 -0500
committerGitHub <[email protected]>2026-01-29 20:02:36 +0000
commitcd4075faf6b9cc80e4f9bdf2b8d4da359b0d8718 (patch)
treee6ccd562def74e1ab415f086311d8d250411db56 /.github/workflows/beta.yml
parent33311e99500fa78aeb22be0dee19d0bf9c0296c6 (diff)
downloadopencode-cd4075faf6b9cc80e4f9bdf2b8d4da359b0d8718.tar.gz
opencode-cd4075faf6b9cc80e4f9bdf2b8d4da359b0d8718.zip
feat: add beta branch sync workflow for contributor PRs (#11190)
Diffstat (limited to '.github/workflows/beta.yml')
-rw-r--r--.github/workflows/beta.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml
new file mode 100644
index 000000000..d92133ea6
--- /dev/null
+++ b/.github/workflows/beta.yml
@@ -0,0 +1,34 @@
+name: beta
+
+on:
+ push:
+ branches: [dev]
+ pull_request:
+ types: [opened, synchronize, labeled, unlabeled]
+
+jobs:
+ sync:
+ if: |
+ github.event_name == 'push' ||
+ (github.event_name == 'pull_request' &&
+ contains(github.event.pull_request.labels.*.name, 'contributor'))
+ runs-on: blacksmith-4vcpu-ubuntu-2404
+ permissions:
+ contents: write
+ pull-requests: read
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Setup Bun
+ uses: ./.github/actions/setup-bun
+
+ - name: Configure Git
+ run: |
+ git config user.name "github-actions[bot]"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
+
+ - name: Sync beta branch
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: bun script/beta.ts