chill-skeleton-basic/.gitea/workflows/release_preparation.yaml
Julien Fastré 6d7d3e0259
Some checks failed
Prepare release for chill app / update-deps (push) Failing after 0s
bootstrap gitea actions for auto-commiting composer.lock
2023-10-24 16:27:23 +02:00

23 lines
818 B
YAML

name: Prepare release for chill app
run-name: Update composer.lock and dependencies for preparing a release
on:
push:
branches:
- 'release/**'
jobs:
update-deps:
steps:
- name: check out repository
uses: https://github.com/actions/checkout@v4
- name: run composer update to update composer.lock
uses: docker://gitea.champs-libres.be/chill-project/chill-skeleton-basic/base-image:latest
run: composer update
- name: commit changed files
uses: 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