Generate changelog for 3.2.0 #14
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: submodule_update | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'release/**' | |
env: | |
EE_FEATURE_BRANCH: 'TarantoolBot/update-tarantool-${{ github.ref_name }}' | |
SDK_FEATURE_BRANCH: 'TarantoolBot/test-ce-${{ github.ref_name }}' | |
jobs: | |
update-ee: | |
# Run on push to the 'master' and release branches in tarantool/tarantool | |
# repo only. | |
if: github.repository == 'tarantool/tarantool' | |
runs-on: [ self-hosted, Linux, x86_64, flavor-1-2 ] | |
timeout-minutes: 60 | |
container: | |
image: docker.io/tarantool/testing:ubuntu-focal | |
outputs: | |
commit-sha: ${{ steps.update-ee.outputs.sha }} | |
env: | |
PR_TITLE_PREFIX: ${{ github.ref_name != 'master' && | |
format('[{0}] ', github.ref_name) || '' }} | |
PR_TITLE: 'tarantool: bump to new version' | |
steps: | |
- name: Update submodule tarantool in tarantool/tarantool-ee@${{ github.ref_name }} | |
uses: tarantool/actions/update-submodule@master | |
id: update-ee | |
with: | |
repository: 'tarantool/tarantool-ee' | |
github_token: ${{ secrets.EE_UPDATE_SUBMODULE_TOKEN }} | |
# checkout `master` or versioned stable branch | |
checkout_branch: ${{ github.ref_name }} | |
feature_branch: ${{ env.EE_FEATURE_BRANCH }} | |
submodule: 'tarantool' | |
update_to: ${{ github.sha }} | |
pr_against_branch: ${{ github.ref_name }} | |
pr_title: ${{ env.PR_TITLE_PREFIX }}${{ env.PR_TITLE }} | |
pr_description: >- | |
Just a regular auto-update of tarantool submodule to bring new features | |
and bug fixes into tarantool-ee. | |
commit_message: | | |
tarantool: bump to new version | |
NO_DOC=submodule update | |
NO_TEST=submodule update | |
NO_CHANGELOG=submodule update | |
- name: Send VK Teams message on failure | |
if: failure() | |
uses: ./.github/actions/report-job-status | |
with: | |
bot-token: ${{ secrets.VKTEAMS_BOT_TOKEN }} |