mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-06 02:01:58 +02:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
# This workflow will rebase `pontoon` with `main` changes, it's for making the
|
|
# Pontoon bot not try making commits to main
|
|
|
|
name: Rebase pontoon branch to main
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
rebase:
|
|
if: ${{ github.repository == 'SlimeVR/SlimeVR-Server' }}
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
ref: pontoon
|
|
submodules: recursive
|
|
# Get all the git history for rebasing
|
|
fetch-depth: 0
|
|
- name: Rebase
|
|
run: |
|
|
git config --local user.name "slimevr-bot"
|
|
git config --local user.email 'pantoon@slimevr.dev'
|
|
git fetch origin main
|
|
git rebase origin/main
|
|
git submodule update
|
|
- name: Push rebase
|
|
uses: github-actions-x/commit@v2.9
|
|
with:
|
|
github-token: ${{ secrets.PONTOON_BOT_KEY }}
|
|
push-branch: "pontoon"
|
|
commit-message: "update"
|
|
force-push: "true"
|
|
name: "slimevr-bot"
|
|
email: "pantoon@slimevr.dev"
|