From 1c45dc54660e5b143747a0e12a4f7a1eb95585a0 Mon Sep 17 00:00:00 2001 From: natxocc Date: Sun, 26 Apr 2026 18:49:29 +0200 Subject: [PATCH] Actualizar .github/workflows/sync-to-github.yml --- .github/workflows/sync-to-github.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sync-to-github.yml b/.github/workflows/sync-to-github.yml index a51f70b..72d4f17 100644 --- a/.github/workflows/sync-to-github.yml +++ b/.github/workflows/sync-to-github.yml @@ -2,6 +2,11 @@ name: Sync selected files to GitHub on: workflow_dispatch: + inputs: + commit_message: + description: 'Mensaje del commit en GitHub' + required: false + default: 'Sync selected files from Gitea' jobs: sync: @@ -41,4 +46,4 @@ jobs: run: | cd dest git add . - git diff --staged --quiet || (git commit -m "Sync selected files from Gitea" && git push origin main) \ No newline at end of file + git diff --staged --quiet || (git commit -m "${{ github.event.inputs.commit_message }}" && git push origin main) \ No newline at end of file