Compare commits

..

1 Commits

Author SHA1 Message Date
0b316b75c7 Merge pull request 'release/test2' (#1) from release/test2 into main
Reviewed-on: #1
2023-11-19 20:38:49 +00:00
3 changed files with 4 additions and 6 deletions

View File

@@ -1,6 +1,9 @@
name: Create release name: Create release
run-name: Create release on tag run-name: Create release on tag
permissions:
contents: write
on: on:
push: push:
tags: tags:

View File

@@ -10,11 +10,9 @@ on:
jobs: jobs:
tag_if_merged: tag_if_merged:
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/') if: github.event.pull_request.merged == true and startsWith(github.head_ref, 'release/')
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: check out repository
uses: https://github.com/actions/checkout@v4
- name: changie latest - name: changie latest
id: changie_latest id: changie_latest
uses: https://github.com/miniscruff/changie-action@v2 uses: https://github.com/miniscruff/changie-action@v2

View File

@@ -39,19 +39,16 @@ 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)"