Compare commits

...

10 Commits
main ... main

Author SHA1 Message Date
Julien Fastré ca4e8e3cec Merge pull request 'checkout before' (#3) from release/test2 into main
Create release / create-release (push) Failing after 7s Details
Reviewed-on: julienfastre/chill-skeleton-basic#3
2023-11-19 20:44:53 +00:00
Julien Fastré 9949393d7b
checkout before
Prepare release for chill app / update-deps (push) Successful in 23s Details
Tag next release / tag_if_merged (pull_request) Failing after 21s Details
2023-11-19 21:44:11 +01:00
Julien Fastré e0c8c16084 Merge pull request 'Fix expressions' (#2) from release/test2 into main
Reviewed-on: julienfastre/chill-skeleton-basic#2
2023-11-19 20:43:07 +00:00
Julien Fastré 3074dae15a
Fix expressions
Prepare release for chill app / update-deps (push) Successful in 23s Details
Tag next release / tag_if_merged (pull_request) Failing after 7s Details
2023-11-19 21:42:17 +01:00
Julien Fastré 0b316b75c7 Merge pull request 'release/test2' (#1) from release/test2 into main
Reviewed-on: julienfastre/chill-skeleton-basic#1
2023-11-19 20:38:49 +00:00
Julien Fastré ecdfc7445e
Workflow: tag and create release
Prepare release for chill app / update-deps (push) Failing after 23s Details
Tag next release / tag_if_merged (pull_request) Failing after 0s Details
2023-11-19 21:36:10 +01:00
julienfastre e50b764d85 update composer.lock and file (automatic update) 2023-11-19 20:08:44 +00:00
Julien Fastré aa8c724262 prepare for realease
Prepare release for chill app / update-deps (push) Successful in 28s Details
Signed-off-by: Julien Fastré <julienfastre@noreply.localhost>
2023-11-19 20:08:17 +00:00
julienfastre bd8a95836c update composer.lock and file (automatic update) 2023-11-19 20:01:57 +00:00
Julien Fastré e9f90640d3
Integrate changie and create a workflow for publishing app
Prepare release for chill app / update-deps (push) Successful in 54s Details
2023-11-19 21:00:32 +01:00
12 changed files with 400 additions and 238 deletions

6
.changes/header.tpl.md Normal file
View File

@ -0,0 +1,6 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).

View File

3
.changes/v0.1.0.md Normal file
View File

@ -0,0 +1,3 @@
## v0.1.0 - 2023-11-02
### Release
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2

3
.changes/v0.2.0.md Normal file
View File

@ -0,0 +1,3 @@
## v0.2.0 - 2023-11-19
### Release
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2

3
.changes/v0.3.0.md Normal file
View File

@ -0,0 +1,3 @@
## v0.3.0 - 2023-11-19
### Release
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.12.1

35
.changie.yaml Normal file
View File

@ -0,0 +1,35 @@
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
# Note: it is possible to add a `.custom.Long` text manually into the yaml file produced by `changie new`. This will add a long description.
changeFormat: >-
* {{ if and (ne .Custom.Issue "") (ne .Custom.Issue "0") }}([#{{ .Custom.Issue }}](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/{{ .Custom.Issue }})) {{ end }}{{.Body}}
custom:
- key: Issue
label: Issue number (on chill-bundles repository) (optional)
optional: true
type: int
kinds:
- label: Release
auto: minor
- label: Feature
auto: minor
- label: Deprecated
auto: minor
- label: Fixed
auto: patch
- label: Security
auto: patch
- label: DX
auto: patch
- label: UX
auto: patch
newlines:
afterChangelogHeader: 1
beforeChangelogVersion: 1
endOfVersion: 1
envPrefix: CHANGIE_

View File

@ -0,0 +1,19 @@
name: Create release
run-name: Create release on tag
permissions:
contents: write
on:
push:
tags:
- v*
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: release
uses: https://github.com/softprops/action-gh-release@v1
with:
body_path: ${{ github.workspace }}/.changes/v${{ github.ref }}.md

View File

@ -0,0 +1,27 @@
name: Tag next release
run-name: Create a tag when PR is merged
on:
pull_request_target:
types:
- closed
branches:
- 'main'
jobs:
tag_if_merged:
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'release/')
runs-on: ubuntu-latest
steps:
- name: check out repository
uses: https://github.com/actions/checkout@v4
- name: changie latest
id: changie_latest
uses: https://github.com/miniscruff/changie-action@v2
with:
version: latest
args: 'latest'
- name: create a tag
uses: https://github.com/rickstaa/action-create-tag@v1
with:
tag: ${{ steps.changie_latest.outputs.output }}

View File

@ -0,0 +1,59 @@
name: Prepare release for chill app
run-name: Update composer.lock and dependencies for preparing a release
on:
push:
branches:
- 'release/**'
jobs:
update-deps:
runs-on: ubuntu-latest
steps:
- 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:
cmd: 'cat composer.lock | jq --raw-output ''.packages[] | select ( .name | contains ("chill-project/chill-bundles")) | .version'''
- name: run composer update to update composer.lock
uses: docker://gitea.champs-libres.be/chill-project/chill-skeleton-basic/base-image:latest
with:
# this is where we set the command to execute
args: composer update --no-install
- name: is composer.lock changed ?
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:
cmd: 'cat composer.lock | jq --raw-output ''.packages[] | select ( .name | contains ("chill-project/chill-bundles")) | .version'''
- name: add a changie file for the upgrade
uses: https://github.com/miniscruff/changie-action@v2
if: ${{ steps.composer-lock-changed.outputs.is_composer_lock_changed == 1 }}
with:
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"'
- name: changie batch
if: ${{ steps.composer-lock-changed.outputs.is_composer_lock_changed == 1 }}
uses: https://github.com/miniscruff/changie-action@v2
with:
version: latest
args: 'batch auto'
- name: changie merge
if: ${{ steps.composer-lock-changed.outputs.is_composer_lock_changed == 1 }}
uses: https://github.com/miniscruff/changie-action@v2
with:
version: latest
args: 'merge'
- 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
with:
commit_message: "update composer.lock and file (automatic update)"
commit_user_name: Action Bot
commit_user_email: bot@chill.social

View File

@ -1,12 +1,19 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).
* [Semantic Versioning](https://semver.org/spec/v2.0.0.html) for stable releases;
* date versioning for test releases
## Unreleased
## v0.3.0 - 2023-11-19
### Release
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.12.1
## v0.2.0 - 2023-11-19
### Release
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2
## v0.1.0 - 2023-11-02
### Release
* Update dependencies. Chill-bundles upgraded from 2.9.2 to 2.9.2

View File

@ -15,7 +15,7 @@
},
"require": {
"ext-redis": "*",
"chill-project/chill-bundles": "2.9.2",
"chill-project/chill-bundles": "2.12.1",
"symfony/flex": "^1.9",
"symfony/http-client": "^4.4 || ^5",
"nelmio/alice": "^3.8",

464
composer.lock generated

File diff suppressed because it is too large Load Diff