From 10cb6c6a332ad92797ff5a5dbfb19276d5219e8e Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sat, 11 Apr 2026 11:19:04 +0000 Subject: [PATCH 1/4] [skip CI] i18n: Translate dde-clipboard.ts in uk 100% translated source file: 'dde-clipboard.ts' on 'uk'. --- translations/dde-clipboard_uk.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/dde-clipboard_uk.ts b/translations/dde-clipboard_uk.ts index 4a834a19..b90e88f6 100644 --- a/translations/dde-clipboard_uk.ts +++ b/translations/dde-clipboard_uk.ts @@ -109,7 +109,7 @@ Copied - + Скопійовано From 99c9f61270f89f4c79869d73db6225204d5bf47b Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 18:59:28 +0000 Subject: [PATCH 2/4] [skip CI] i18n: Translate dde-clipboard.ts in pt_BR 100% translated source file: 'dde-clipboard.ts' on 'pt_BR'. --- translations/dde-clipboard_pt_BR.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/dde-clipboard_pt_BR.ts b/translations/dde-clipboard_pt_BR.ts index deae3150..509af014 100644 --- a/translations/dde-clipboard_pt_BR.ts +++ b/translations/dde-clipboard_pt_BR.ts @@ -109,7 +109,7 @@ Copied - + Copiado From cbf18456fdd12dd84564ec092f7d649f715c02c6 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 01:47:51 +0000 Subject: [PATCH 3/4] [skip CI] i18n: Translate dde-clipboard.ts in pl 100% translated source file: 'dde-clipboard.ts' on 'pl'. --- translations/dde-clipboard_pl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/dde-clipboard_pl.ts b/translations/dde-clipboard_pl.ts index 46e27bb3..28c5c07c 100644 --- a/translations/dde-clipboard_pl.ts +++ b/translations/dde-clipboard_pl.ts @@ -117,7 +117,7 @@ Double-click the content area to copy - Kliknij dwukrotnie zawartość, aby skopiować + Kliknij dwukrotnie, aby skopiować \ No newline at end of file From 1cc1ac8d58e3f785a32a65ad11d5f76244cfe792 Mon Sep 17 00:00:00 2001 From: deepin-admin-bot Date: Mon, 22 Jun 2026 11:00:52 +0000 Subject: [PATCH 4/4] chore: Sync by https://github.com/linuxdeepin/.github/commit/88706fa723e3771211cb0781d3d97fd4a6cd2a68 sync by github workflow Log: none Influence: none --- .github/workflows/call-update-changelog.yml | 53 +++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/call-update-changelog.yml diff --git a/.github/workflows/call-update-changelog.yml b/.github/workflows/call-update-changelog.yml new file mode 100644 index 00000000..b76b9b3f --- /dev/null +++ b/.github/workflows/call-update-changelog.yml @@ -0,0 +1,53 @@ +name: Call update changelog + +on: + workflow_dispatch: + inputs: + version: + description: "Target version; leave empty to auto bump" + required: false + type: string + name: + description: "Maintainer name used in debian/changelog" + required: true + type: string + email: + description: "Maintainer email used in debian/changelog" + required: true + type: string + base_branch: + description: "Base branch to read and target" + required: false + default: master + type: string + distribution: + description: "Changelog distribution" + required: false + default: unstable + type: string + create_pr: + description: "Create a pull request after generating changelog" + required: false + default: true + type: boolean + +jobs: + update_changelog: + uses: linuxdeepin/.github/.github/workflows/update-changelog.yml@master + with: + version: ${{ inputs.version }} + name: ${{ inputs.name }} + email: ${{ inputs.email }} + base_branch: ${{ inputs.base_branch }} + distribution: ${{ inputs.distribution }} + create_pr: ${{ inputs.create_pr }} + secrets: inherit + + show_result: + runs-on: ubuntu-latest + needs: update_changelog + steps: + - name: Show update changelog result + run: | + echo "Version: ${{ needs.update_changelog.outputs.version }}" + echo "Pull Request URL: ${{ needs.update_changelog.outputs.pr_url }}"