Skip to content

Massive update to use python 3.12, oreum_core 0.10 and pymc 5.20 (#11) #13

Massive update to use python 3.12, oreum_core 0.10 and pymc 5.20 (#11)

Massive update to use python 3.12, oreum_core 0.10 and pymc 5.20 (#11) #13

Workflow file for this run

name: automatic rebase deps
on:
push:
branches:
- master
workflow_dispatch:
jobs:
rebase:
name: Rebase `deps` with `master`
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
ref: deps
- run: |
git config user.name github-actions
git config user.email [email protected]
git rebase origin/master
git push origin deps --force