update changie message
Prepare release for chill app / update-deps (push) Successful in 27s Details

This commit is contained in:
Julien Fastré 2023-11-02 00:46:46 +01:00
parent d2e0ca25c9
commit 956563336a
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
1 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ jobs:
- name: check out repository
uses: https://github.com/actions/checkout@v4
- name: get the previous chill version
# parse the composer.lock file using jq to get the chill version before the upgrade
id: chill-before
uses: https://github.com/sergeysova/jq-action@v2
with:
@ -26,6 +27,7 @@ jobs:
id: composer-lock-changed
run: 'echo is_composer_lock_changed=$(git diff --name-only | grep "composer\.lock" | wc -l) >> $GITHUB_OUTPUT'
- name: get the new chill version
# parse the composer.lock file using jq to get the chill version after the upgrade
id: chill-after
uses: https://github.com/sergeysova/jq-action@v2
with:
@ -38,7 +40,7 @@ jobs:
if: ${{ steps.composer-lock-changed.outputs.is_composer_lock_changed == 1 }}
with:
version: latest
args: 'new --body "update deps" --kind Release --custom "Issue=0"'
args: 'new --body "Update dependencies. Chill-bundles upgraded from ${{ steps.chill-before.outputs.value }} to ${{ steps.chill-after.outputs.value }}" --kind Release --custom "Issue=0"'
- name: commit changed files
uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
with: