Fix expressions #2

Merged
julienfastre merged 1 commits from release/test2 into main 2023-11-19 20:43:08 +00:00
2 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,7 @@ on:
jobs: jobs:
tag_if_merged: tag_if_merged:
if: github.event.pull_request.merged == true and startsWith(github.head_ref, 'release/') if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/')
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: changie latest - name: changie latest

View File

@ -39,16 +39,19 @@ jobs:
version: latest version: latest
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"' 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: changie batch - name: changie batch
if: ${{ steps.composer-lock-changed.outputs.is_composer_lock_changed == 1 }}
uses: https://github.com/miniscruff/changie-action@v2 uses: https://github.com/miniscruff/changie-action@v2
with: with:
version: latest version: latest
args: 'batch auto' args: 'batch auto'
- name: changie merge - name: changie merge
if: ${{ steps.composer-lock-changed.outputs.is_composer_lock_changed == 1 }}
uses: https://github.com/miniscruff/changie-action@v2 uses: https://github.com/miniscruff/changie-action@v2
with: with:
version: latest version: latest
args: 'merge' args: 'merge'
- name: commit changed files - name: commit changed files
if: ${{ steps.composer-lock-changed.outputs.is_composer_lock_changed == 1 }}
uses: https://github.com/stefanzweifel/git-auto-commit-action@v5 uses: https://github.com/stefanzweifel/git-auto-commit-action@v5
with: with:
commit_message: "update composer.lock and file (automatic update)" commit_message: "update composer.lock and file (automatic update)"