Skip to content

Commit

Permalink
Add release version to commits and branch names of template synchroni…
Browse files Browse the repository at this point in the history
…zation job (paritytech#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.
  • Loading branch information
rzadp authored and hitchhooker committed Jun 5, 2024
1 parent a080bd0 commit 0fbd1d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/misc-sync-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 comments on commit 0fbd1d9

Please sign in to comment.