Skip to content

docs: update README.md (#166) #101

docs: update README.md (#166)

docs: update README.md (#166) #101

name: Automatic Rebase
on:
push:
branches:
- main
permissions:
contents: write
jobs:
rebase:
name: Rebase `dependencies` with `main`
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
ref: dependencies
- run: |
git config user.name github-actions
git config user.email github-actions@github.com
git rebase origin/main
git push origin dependencies --force