Julien Fastré
977ab5927c
All checks were successful
Prepare release for chill app / update-deps (push) Successful in 8s
25 lines
858 B
YAML
25 lines
858 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:
|
|
#container:
|
|
# image: gitea.champs-libres.be/chill-project/chill-skeleton-basic/base-image:latest
|
|
steps:
|
|
- name: check out repository
|
|
uses: https://github.com/actions/checkout@v4
|
|
# - name: run composer update to update composer.lock
|
|
# run: composer update
|
|
# - name: commit changed files
|
|
# 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
|
|
#
|