From e4785769eac1dae3945a388dd745fa43555ea4da Mon Sep 17 00:00:00 2001 From: "Max P." Date: Mon, 26 May 2025 16:32:57 +0200 Subject: [PATCH] feat(workflows): add GitHub release sync workflow - Introduces a workflow to synchronize releases with GitHub - Supports manual triggers with optional tag input - Utilizes a custom releases sync action for automation --- .gitea/workflows/sync-github.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/sync-github.yml b/.gitea/workflows/sync-github.yml index 6ff3ddc..2d4ba08 100644 --- a/.gitea/workflows/sync-github.yml +++ b/.gitea/workflows/sync-github.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v4 - name: Run Releases Sync Action - uses: https://git.0xmax42.io/actions/releases-sync + uses: https://git.0xmax42.io/actions/releases-sync@main with: tag_name: ${{ inputs.tag || github.event.release.tag_name }} github_token: ${{ secrets.SYNC_GITHUB_TOKEN }}