Workflow file for this run
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
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/ | |
echo $PWD | |
git fetch origin ${{ github.ref_name }} | |
git checkout ${{ github.ref_name }} | |
cd ../.. | |
git add third_party/luajit | |
git commit -m "luajit: bump submodule" | |
git push origin ${{ github.ref_name }} |