ci(workflows): add manual trigger and auto-trigger for develop workflow

Add workflow_dispatch trigger to develop.yml for manual execution and implement automatic triggering from update-develop-branch workflow after successful version updates.
This commit is contained in:
bobokun 2025-08-24 19:09:03 -04:00
parent bc3e2425c3
commit cf0f10f775
No known key found for this signature in database
GPG key ID: B73932169607D927
3 changed files with 10 additions and 1 deletions

View file

@ -3,6 +3,7 @@ name: Docker Develop Release
on:
push:
branches: [ develop ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View file

@ -74,3 +74,11 @@ jobs:
fi
echo "Successfully updated develop branch to $NEW_VERSION"
- name: Trigger develop workflow
if: success()
run: |
echo "Triggering develop workflow..."
gh workflow run develop.yml --ref develop
env:
GH_TOKEN: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}

View file

@ -1 +1 @@
4.5.6-develop1
4.5.6-develop2