From e06ed62241c49436066591ee7ec683c5605dd63b Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 23 Apr 2025 15:26:15 -0400 Subject: [PATCH] workflow/sync: Fix workflow task 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 --git a/.github/workflows/sync.yml b/.github/workflows/sync.yml index 48def96b8..783e2369f 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 -- 2.47.3