ci: support main branch build and changelog workflows

This commit is contained in:
Andras Bacsai 2026-07-20 12:54:25 +02:00
parent 94a95cdf54
commit 160278c7eb
5 changed files with 7 additions and 10 deletions

View file

@ -2,7 +2,7 @@ name: Coolify Helper Image
on:
push:
branches: [ "v4.x" ]
branches: [ "v4.x", "main" ]
paths:
- .github/workflows/coolify-helper.yml
- docker/coolify-helper/Dockerfile

View file

@ -2,14 +2,10 @@ name: Coolify Realtime
on:
push:
branches: [ "v4.x" ]
branches: [ "v4.x", "main" ]
paths:
- .github/workflows/coolify-realtime.yml
- docker/coolify-realtime/Dockerfile
- docker/coolify-realtime/terminal-server.js
- docker/coolify-realtime/package.json
- docker/coolify-realtime/package-lock.json
- docker/coolify-realtime/soketi-entrypoint.sh
- docker/coolify-realtime/**
permissions:
contents: read

View file

@ -2,7 +2,7 @@ name: Build Coolify (SHA)
on:
push:
branches: ["v4.x"]
branches: ["v4.x", "main"]
permissions:
contents: read

View file

@ -4,6 +4,7 @@ on:
push:
branches-ignore:
- v4.x
- main
- v3.x
- '**v5.x**'
paths-ignore:

View file

@ -2,7 +2,7 @@ name: Generate Changelog
on:
push:
branches: [ v4.x ]
branches: [ v4.x, main ]
paths-ignore:
- .github/workflows/coolify-helper.yml
- .github/workflows/coolify-helper-next.yml
@ -39,4 +39,4 @@ jobs:
git config user.email 'github-actions[bot]@users.noreply.github.com'
git add CHANGELOG.md
git commit -m "docs: update changelog"
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git v4.x
git push https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git HEAD:${GITHUB_REF_NAME}