Skip to content

Commit

Permalink
exp
Browse files Browse the repository at this point in the history
  • Loading branch information
mkokryashkin committed Nov 3, 2023
1 parent e4bf14c commit fd9a884
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/auto-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
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 pull origin
git checkout ${{ github.ref_name }}
cd ../..
git add third_party/luajit
git commit -m "luajit: bump submodule"
git push origin ${{ github.ref_name }}

0 comments on commit fd9a884

Please sign in to comment.