From 3ddc25fd4e1b656158e7ec115223f19a2436a812 Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Wed, 15 Dec 2021 19:41:20 +0000 Subject: [PATCH 1/3] Ensure application translations are updated by workflow --- .github/workflows/branch-man.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/branch-man.yml b/.github/workflows/branch-man.yml index 46796cb4..4c55167c 100644 --- a/.github/workflows/branch-man.yml +++ b/.github/workflows/branch-man.yml @@ -49,9 +49,9 @@ jobs: - name: Build application translations catalogs run: | + rm -f po/linkchecker.pot make -C po - # It's OK if no changes were made - git commit -a -m "Update application translation catalogs" || true + git commit -a -m "Update application translation catalogs" - name: Push changes run: > From dd2fe08ebdce167e1f7a008befbdd2547e3612fc Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Wed, 15 Dec 2021 19:41:20 +0000 Subject: [PATCH 2/3] Add a manual trigger to publish Docker image --- .github/workflows/publish-docker.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index 3c8a89a6..ba0ae389 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -6,6 +6,7 @@ on: push: branches: ['master'] tags: 'v*' + workflow_dispatch: env: REGISTRY: ghcr.io From 5cb406a8c3366f0839261f6d51506846d466df4c Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Thu, 16 Dec 2021 19:23:53 +0000 Subject: [PATCH 3/3] Reword commit message updating documentation translations --- .github/workflows/branch-man.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/branch-man.yml b/.github/workflows/branch-man.yml index 4c55167c..c197f1d2 100644 --- a/.github/workflows/branch-man.yml +++ b/.github/workflows/branch-man.yml @@ -43,7 +43,7 @@ jobs: - name: Build man pages run: | make -C doc locale - git commit -a -m "Update doc locale" + git commit -a -m "Update doc translation catalogs" make -C doc man git commit -a -m "Update man pages"