diff options
| author | Dax Raad <[email protected]> | 2026-01-30 10:08:28 -0500 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-01-30 10:08:28 -0500 |
| commit | abb87eac8f9a795ead817a062c3f614c315faf05 (patch) | |
| tree | 0a4a822cc83bc6884cd5e865a04471dba35cf0e1 /.github/workflows | |
| parent | a530c1b5b6d56f2dba9edaf8458e8029d5e57f2f (diff) | |
| download | opencode-abb87eac8f9a795ead817a062c3f614c315faf05.tar.gz opencode-abb87eac8f9a795ead817a062c3f614c315faf05.zip | |
ci
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/beta.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index f7180ea1e..b941311d3 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -23,12 +23,14 @@ jobs: - 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: Setup Git Committer + id: setup-git-committer + uses: ./.github/actions/setup-git-committer + with: + opencode-app-id: ${{ secrets.OPENCODE_APP_ID }} + opencode-app-secret: ${{ secrets.OPENCODE_APP_SECRET }} - name: Sync beta branch env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_TOKEN: ${{ steps.setup-git-committer.outputs.token }} run: bun script/beta.ts |
