1eedad9213
* feat: changelog generation * refactor: rename all ENV variables to KILO prefix * refactor: publish rework * refactor: publish rework * refactor: unify git commiter action * refactor: add all kilobots to the team
36 lines
856 B
YAML
36 lines
856 B
YAML
name: beta
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 * * * *"
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Bun
|
|
uses: ./.github/actions/setup-bun
|
|
|
|
- name: Setup Git Committer
|
|
id: committer
|
|
uses: ./.github/actions/setup-git-committer
|
|
with:
|
|
# kilocode_change start
|
|
kilo-maintainer-app-id: ${{ secrets.KILO_MAINTAINER_APP_ID }}
|
|
kilo-maintainer-app-secret: ${{ secrets.KILO_MAINTAINER_APP_SECRET }}
|
|
# kilocode_change end
|
|
|
|
- name: Sync beta branch
|
|
env:
|
|
GH_TOKEN: ${{ steps.committer.outputs.token }}
|
|
run: bun script/beta.ts
|