Finger tracking skeleton and VMC support (#1091) #484
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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@v4 | |
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 '[email protected]' | |
git fetch origin main | |
git rebase origin/main | |
git submodule update | |
- name: Push rebase | |
uses: github-actions-x/[email protected] | |
with: | |
github-token: ${{ secrets.PONTOON_BOT_KEY }} | |
push-branch: "pontoon" | |
commit-message: "update" | |
force-push: "true" | |
name: "slimevr-bot" | |
email: "[email protected]" |