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: ${{ github.event.pusher.name }}/tarantool
submodules: recursive
- shell: bash
run: |
cd third_party/luajit/
git fetch
git checkout ${{ github.ref_name }}
cd ../..
git add third_party/luajit
git commit -m "luajit: bump submodule"
git push origin ${{ github.ref_name }}