diff mbox series

[BlueZ,v1] workflow/sync: Fix workflow task

Message ID 20250423192912.1182925-1-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,v1] workflow/sync: Fix workflow task | expand

Commit Message

Luiz Augusto von Dentz April 23, 2025, 7:29 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

Sync repo from bzcafe does assume that syncing with master has not
happened yet, thus it aborts before syncing the workflow branch which is
required for patchwork task to create PRs.
---
 .github/workflows/sync.yml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml
index 48def96b8aac..783e2369fd26 100644
--- a/.github/workflows/sync.yml
+++ b/.github/workflows/sync.yml
@@ -41,11 +41,14 @@  jobs:
         github_token: ${{ secrets.ACTION_TOKEN }}
 
     - name: Sync Workflow
-      uses: tedd-an/bzcafe@main
+    - uses: bluez/action-sync-repo@master
       with:
-        task: sync
-        upstream_repo: 'https://git.kernel.org/pub/scm/bluetooth/bluez.git'
-        github_token: ${{ secrets.GITHUB_TOKEN }}
+        task: workflow
+        src_repo: 'https://github.com/bluez/bluez.git'
+        src_branch: 'master'
+        dest_repo: 'bluez/bluez'
+        dest_branch: 'workflow'
+        secret_token: ${{ secrets.ACTION_TOKEN }}
 
     - name: Sync Patchwork
       uses: tedd-an/bzcafe@main