Skip to content

Workflow file for this run

name: Create PR with submodule bump in tarantool repo
on:
push:
branches-ignore:
- '**-notest'
- 'upstream-**'
- '**-nopr'
tags-ignore:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: tarantool/tarantool
submodules: recursive
- shell: bash
run: |
git config --global user.name ${{ github.event.pusher.name }}
git config --global user.email ${{ github.event.pusher.email }}
git remote add fork https://github.com/${{ github.event.pusher.name }}/tarantool
cd third_party/luajit/
git fetch origin ${{ github.ref_name }}
git checkout FETCH_HEAD
cd ../..
git checkout -b ${{ github.ref_name }}
git add third_party/luajit
git commit -m "luajit: bump submodule"
git push fork ${{ github.ref_name }}