Fix expressions
This commit is contained in:
parent
ecdfc7445e
commit
3074dae15a
@ -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
|
||||||
|
@ -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)"
|
||||||
|
Loading…
Reference in New Issue
Block a user