Skip to content
Snippets Groups Projects
Unverified Commit e0edb062 authored by Przemek Rzad's avatar Przemek Rzad Committed by GitHub
Browse files

Add release version to commits and branch names of template synchronization job (#4353)

Just to have some information what is the release number that was used
to push a particular commit or PR in the templates repositories.
parent 89b67bc6
No related merge requests found
Pipeline #478283 waiting for manual action with stages
in 1 hour, 25 minutes, and 59 seconds
......@@ -148,12 +148,12 @@ jobs:
token: ${{ steps.app_token.outputs.token }}
add-paths: |
./*
title: "[Don't merge] Update the ${{ matrix.template }} template"
title: "[Don't merge] Update the ${{ matrix.template }} template to ${{ github.event.inputs.crate_release_version }}"
body: "The template has NOT been successfully built and needs to be inspected."
branch: "update-template/${{ github.event_name }}"
branch: "update-template/${{ github.event.inputs.crate_release_version }}"
- name: Push changes
run: |
git add -A .
git commit --allow-empty -m "Update template triggered by ${{ github.event_name }}"
git commit --allow-empty -m "Update to ${{ github.event.inputs.crate_release_version }} triggered by ${{ github.event_name }}"
git push
working-directory: "${{ env.template-path }}"
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment